html, body, h1, h2, h3 {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 40px;
}

.wrapper {
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom,#c2f09c 10%, #ffe3c7 100%);
}

.logo {
    width: 80%;
    height: 50px;
    margin: 0 auto;
    padding-top: 50px;
}

    .logo img {
        width: 100%;
    }

h1 {
    font-size: 0.6rem;
    color: #6933b0;
    text-align: center;
}

.defoult_text {
    font-size: 18px;
    text-align: center;
    color: #8654cc;
    opacity: 1;
    opacity: all 1s ease-in-out;
}

.firstscreen {
    opacity: 1;
    transition: all 1s ease-in-out;
}

.select_block {
    position: relative;
    width: 100%;
    height: 100vh;
}

    .select_block div {
        width: 64px;
        height: 64px;
        position: absolute;
        cursor: pointer;
        background-repeat: no-repeat;
        background-size: contain;
    }

.headphones {
    background-image: url(/image/free-icon-headphones-3355318.png);
    left: 5%;
    top: 10%;
    transform: rotateZ(30deg);
}

.phone {
    background-image: url(/image/free-icon-smartphone-9426680.png);
    right: 10%;
    bottom: 50%;
    transform: rotateZ(15deg);
}

.fen {
    background-image: url(/image/free-icon-hair-dryer-5501430.png);
    right: 7%;
    top: 10%;
    transform: rotateZ(-45deg);
}

.perfume {
    background-image: url(/image/free-icon-perfume-1890663.png);
    left: 21%;
    bottom: 45%;
    transform: rotateZ(-15deg);
}

.cosmetics {
    background-image: url(/image/free-icon-cosmetics-3194619.png);
    left: 40%;
    top: 25%;
    transform: rotateZ(10deg);
}

.secondScreen {
    display: none;
    opacity: 0;
    transition: all 1s ease-in-out;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    margin: 0 auto;
    transition: all 1s ease-in-out;
}

    form input {
        height: 40px;
        border-radius: 10px;
        border: 0px;
    }

input::placeholder {
    text-align: center;
    font-size: 14px;
    color: #8654cc;
}

#send {
    width: 60%;
    margin: 20px auto 0px;
    background-color: #8654cc;
    border-radius: 20px;
    color: #c2f09c;
    border: 0px;
    height: 50px;
}

#send {
    background-color: #c2f09c;
    border: 2px solid #8654cc;
    color: #8654cc;
    cursor: pointer;
}

.finalScreen {
    display: none;
    opacity: 0;
    transition: all 1s ease-in-out;
}

    .finalScreen h5 {
        font-size: 24px;
        text-align: center;
        color: #6933b0;
    }

.display_add {
    display: block;
}

.display_none {
    display: none;
}

.opacity_add {
    opacity: 1;
}

.opacity_none {
    opacity: 0;
}
