@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Young+Serif&display=swap');

:root {
    --cor1: #f3e5d8;
    --cor2: #fff7fc;
    --cor3: #84443b;
    --cor4: #712b47;
}

/*
font-family: "Young Serif", serif;
font-family: "Montserrat", sans-serif;
font-family: "Poppins", sans-serif;
*/

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--cor1);
    margin-top: 100px;
    margin-bottom: 100px;
}

main {
    width: 700px;
    background-color: white;
    margin: 0 auto;
    padding: 30px 30px;
    border-radius: 20px;
}


/* SECTION 1 */

.section1 img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.section1 h1 {
    margin-top: 20px;
    font-family: "Young Serif", serif;
    font-weight: normal;
    font-size: 35px;
}

.section1 p {
    margin-top: 12px;
    font-family: "Poppins", sans-serif;
    opacity: 0.5;
    font-size: 15px;
}

/* SECTION 2 */

.section2 {
    margin-top: 30px;
    background-color: var(--cor2);
    padding: 20px;
    border-radius: 15px;
}

.section2 h2 {
    margin-left: 25px;
    margin-top: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: var(--cor4);
}

.section2 ul {
    margin-left: 45px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
}

.section2 li {
    margin-top: 15px;
    padding-left: 15px;
    opacity: 0.8;
}

.section2 ul li::marker {
    color: var(--cor4);
}

/* SECTION 3 */

.section3 {
    margin-top: 10px;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.199);
}

.section3 h3 {
    font-family: "Young Serif", serif;
    font-weight: normal;
    color: var(--cor3);
    font-size: 25px;
    margin-left: -20px;
}

.section3 ul {
    padding-left: 10px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.section3 li {
    margin-top: 15px;
    font-family: "Poppins", sans-serif;
    padding-left: 20px;
    font-size: 14px;
}

.section3 ul li::marker {
    color: var(--cor4);
}

/* SECTION 4 */

.section4 {
    margin-top: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.199);
}

.section4 h3 {
    font-family: "Young Serif", serif;
    font-weight: normal;
    color: var(--cor3);
    font-size: 25px;
}

.section4 ol {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 35px;
    padding-left: 20px;
}

.section4 li {
    padding-left: 15px;
    margin-top: 18px;
    opacity: 0.8;
}

.section4 ol li::marker {
    color: var(--cor4);
    font-weight: bolder;
}

/* SECTION 5 */

.section5 {
    margin-top: 25px;
}

.section5 h3 {
    font-family: "Young Serif", serif;
    font-weight: normal;
    color: var(--cor3);
    font-size: 25px;
}

.section5 p {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    opacity: 0.7;
    margin-top: 20px;
}

.section5 table {
    width: 100%;
    margin-top: 15px;
}

.section5 table tr {
    font-family: "Poppins", sans-serif;
}

.section5 table td {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.082);
}

.section5 strong {
    color: var(--cor4);
    opacity: 0.7;
}

@media screen and (max-width: 900px) {
    main {
        width: 60%;
    }

    .section1 h1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 600px) {
    body {
        margin-top: 0;
        margin-bottom: -20px;
    }

    main {
        width: 100%;
        padding: 0;
        border-radius: 0;
    }

    /* SECTION 1 */

    .section1 img {
        border-radius: 0;
    }

    .section1 h1 {
        font-size: 40px;
        padding: 0 20px;
    }

    .section1 p {
        padding: 0 20px;
    }

    /* SECTION 2-3-4-5 */

    .section2 , .section3, .section4, .section5 {
        margin: 20px;
    }
}