@charset "utf-8";
/* CSS Document */

section {
    max-width: 900px;
    margin: 20px auto;
    padding: 15px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

/* Responsive */
@media (max-width: 900px) {
    section {
        padding: 10px;
        margin: 10px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }
}