@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:opsz,wght@8..144,400;8..144,600&display=swap');

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

html {
    font-size: 16px;
    font-family: 'Roboto Serif', serif;
    color: white;
    background-color: black;
    text-align: center;
}

body {
    max-width: 980px;
    margin: 20px auto;
    padding: 20px;
}

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

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

h1 {
    text-decoration: underline;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0;
}

a {
    color: #B36816;
    text-decoration: none;
}

a:hover {
    color: gray;
}

/* Media Queries */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    body {
        max-width: 90%;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }

    body {
        max-width: 90%;
    }

    h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1rem;
    }

    p {
        font-size: 0.8rem;
    }
}
