@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* setting */

.body-text{
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    font-family: "Noto Serif", serif;
    text-align: justify;
    color: black;
}

.questions{
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    font-family: "Inter", sans-serif;
    text-align: justify;
    color: black;
}

img{
    width: 100%;
    height: auto;
}

/* body */
body{
    background-color: #fffbf9;
    margin: 0;
    padding: 0;
}

.main{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    padding-bottom: 40px;
}

.section-title{
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0px);
}

.section-1, .section-3, .section-5, .section-7, .section-9, .section-11{
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.section-2, .section-4, .section-8, .section-10, footer{
    max-width: 720px;
    margin: 0 auto;
}

.section-6{
    width: 100%;
    display: flex;
}

.section-6 img{
    width: 50%;
}

.body-text {
    width: 100%;
    opacity: 0;
    transform: translatex(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.body-text.visible {
    opacity: 1;
    transform: translateX(0px);
}

.questions {
    width: 100%;
    opacity: 0;
    transform: translatex(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.questions.visible {
    opacity: 1;
    transform: translateX(0px);
}

img {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

img.visible {
    opacity: 1;
    transform: translateY(0px);
}

.thankyou{
    padding-bottom: 20px}

@media screen and (max-width: 767px) {
    .section-1, .section-2, .section-3, 
    .section-4, .section-5, .section-7, 
    .section-8, .section-9, .section-10, 
    .section-11, .thankyou{
        padding: 0px 15px;
    }

    .section-6{
        display: flex;
        flex-wrap: wrap;
    }

    .section-6 img{
        width: 100%;
        padding: 0px 15px;
    }
}