section {
    background: var(--background);
}

section .content {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 50px;
}

section h1 {
    text-align: center;
    margin-bottom: 20px;
}

section h2 {
    margin-top: 20px;
}

section h3 {
    margin-top: 15px;
}

section .content p {
    text-align: justify;
}

section a {
    display: inline;
    color: var(--brown);
}

section a:hover {
    color: var(--kaki);
}

section ul {
    list-style-type: disc;
    padding-left: 15px;
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        section .content {
            padding: 50px 40px;
        }

        section h1 {
            margin-bottom: 30px;
        }

        section h2 {
            margin-top: 25px;
        }

        section h3 {
            margin-top: 20px;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            section .content {
                padding: 60px 60px;
                max-width: 1000px;
                margin: 0 auto;
            }

            section h1 {
                margin-bottom: 40px;
            }

            section h2 {
                margin-top: 30px;
            }

            section h3 {
                margin-top: 25px;
            }
        }