body{
    background: #FFC796;
}

.circle1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #FFBE88;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.circle2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #FFBE88;

    position: absolute;
    top: 300px;
    right: 100px;
    z-index: -1;
}
.circle3 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #FFBE88;

    position: absolute;
    top: 700px;
    right: 400px;
    z-index: -1;
}
.circle4 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #FFBE88;

    position: absolute;
    top: 200px;
    right: 1000px;
    z-index: -1;
}
.circle5 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #FFBE88;

    position: absolute;
    top: 800px;
    right: 1200px;
    z-index: -1;
}
.circle6 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #FFBE88;

    position: absolute;
    top: 1200px;
    left: 200px;
    z-index: -1;
}
.circle7 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #FFBE88;

    position: absolute;
    top: 1400px;
    left: 800px;
    z-index: -1;
}

.cherep1 {
    position: absolute;
    top: 240px;
    left: 230px;
    z-index: -1;
}
.cherep2 {
    position: absolute;
    top: 300px;
    right: 230px;
    z-index: -1;
    transform: rotate(45deg);
}
.cherep3 {
    position: absolute;
    top: 1070px;
    left: 155px;
    z-index: -1;
    transform: rotate(-45deg);
}
.cherep4 {
    position: absolute;
    top: 240px;
    left: 230px;
    z-index: -1;
}

.header {
    background-color: #FF6958;
    color: #FBF6D0;
    width: 100%;
    height: 100px;
    border-radius: 0 0 30px 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}


.header-mobile {
    opacity: 0;
}

.header ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 65px;
    font-size: 25px;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;

    padding: 150px 0;
    text-align: center;
}

.main h1 {
    font-size: 64px;
}

.red {
    color: #FF6958;
}

.test-block {
    width: 1700px;
    height: 422px;
    border-radius: 300px;
    background-color: #FBF6D0;
    padding: 75px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.test-block h2 {
    font-size: 40px;
}

.test-block__button {
    width: 950px;
    height: 100px;
    background-color: #FF6958;
    color: #FBF6D0;
    border-radius: 300px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;

}

.test-block__button:hover {
    background-color: #cf4a3b;
}

h3 {
    font-size: 40px;
}

.info-block {
    width: 1700px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-block__text {
    font-size: 25px;
    line-height: 50px;
    text-align: left;
}

.footer {
    background-color: #FF6958;
    color: #FBF6D0;
    width: 100%;
    height: 100px;
    border-radius: 30px 30px 0 0;

    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.footer h3 {
    font-size: 25px;
}

.test-container ol {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.test-container li {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* .quiz-box {
    margin-bottom: 50px;
} */

.quiz-box{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px 2px rgba(100, 100, 100, 0.1);
    width: 600px;
    overflow: hidden;
}
.quiz-header{
    padding: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
ul{
    list-style: none;
    padding: 0;
}
ul li{
    font-size: 20px;
    margin: 15px 0;
    text-align: left;
}
ul li label{
    cursor: pointer;
}
button{
    background-color: #FF6958;
    border: none;
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FBF6D0;
    padding: 15px;
    transition: all 0.5s ease;
}
button:hover{
    background-color: #962e23;
}
button:focus{
    outline: none;
    background-color: #d66457;
}


@media (max-width: 425px) {
    .header {
        opacity: 0;
    }
    
    .header-mobile {
        opacity: 1;

        position: absolute;
        top: 0;

        background-color: #FF6958;
        color: #FBF6D0;
        width: 100%;
        height: 50px;
        border-radius: 0 0 30px 30px;

        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 400;
    }

    .main {
        gap: 50px;

        padding: 50px 0;
    }

    .main h1 {
        font-size: 25px;
    }

    .test-block {
        width: 322px;
        height: 192px;
        padding: 25px 35px;
        border-radius: 100px;
    }

    .test-block h2 {
        font-size: 15.63px;
    }

    .test-block__button {
        width: 190px;
        height: 34px;
    
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15.63px;
    
    }

    h3 {
        font-size: 25px;
    }

    .info-block {
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
        width: 282px;
    }
    .info-block__text {
        order: 2;

        font-size: 15.63px;
        line-height: 25px;
        text-align: center;
    }
    .info-block__image {
        order: 1;
    }
    .info-block__image img{
        width: 227px;
        height: 196px;
    }

    .footer {
        height: 50px;
    }

    .footer h3 {
        font-size: 15.63px;
    }
    .circle1 {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background-color: #FFBE88;
    
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .circle2 {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background-color: #FFBE88;
    
        position: absolute;
        top: 150px;
        right: 0px;
        z-index: -1;
    }
    .circle3 {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background-color: #FFBE88;
    
        position: absolute;
        top: 290px;
        left: 30px;
        z-index: -1;
    }
    .circle4 {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background-color: #FFBE88;
    
        position: absolute;
        top: 500px;
        right: 20px;
        z-index: -1;
    }
    .circle5 {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background-color: #FFBE88;
    
        position: absolute;
        top: 800px;
        left: -30px;
        z-index: -1;
    }
    .circle6 {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background-color: #FFBE88;
    
        position: absolute;
        top: 1000px;
        right: 20px;
        z-index: -1;
    }
    .circle7 {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background-color: #FFBE88;
    
        position: absolute;
        top: 1200px;
        left: 10px;
        z-index: -1;
    }
    .cherep1 {
        width: 101px;
        height: 81px;
        position: absolute;
        top: 50px;
        left: 30px;
        z-index: -1;
    }
    .cherep2 {
        width: 101px;
        height: 81px;
        position: absolute;
        top: 420px;
        left: 310px;
        z-index: -1;
        transform: rotate(45deg);
    }
    .cherep3 {
        width: 101px;
        height: 81px;
        position: absolute;
        top: 970px;
        left: 55px;
        z-index: -1;
        transform: rotate(-45deg);
    }
    .cherep4 {
        width: 101px;
        height: 81px;
        position: absolute;
        top: 1200px;
        left: 295px;
        z-index: -1;
    }
}