@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");
@charset "utf-8";

html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #dbdbdb;
}
body {
    margin: 0px;
    padding: 0;
    height: 100%;
    line-height: 1.4;
    font-family: Archivo, sans-serif;
    background-image: url("img/bg_hoja_bw.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* This is the key line */
    background-position: center;
}

H1 {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
}
H2 {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: left;
}

P {
    text-align: left;
}

#main {
    /* Full screen dimensions */
    width: 100%;
    height: 100vh;

    /* Layout for the text */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: black;
}

/* Applying your link style from earlier */
#main a {
    text-transform: uppercase;
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: black;
    text-decoration: underline;
    font-weight: bold;
}

.content {
    max-width: 400px;
    padding: 150px 20px 150px 20px;
    font-size: 1rem;
    text-align: left;
}

/* MEDIAMEDIAEDIAMEDIAMEDIAMEDIAMEDIAMEDIA */

@media screen and (max-width: 900px) {
    .content {
        padding: 50px 20px 150px 20px;
        font-size: 0.9rem;
        text-align: center;
    }
}
