html {
    font-family: "Space Mono", serif;
    font-weight: 400;
    font-style: normal;
}

a {
    text-decoration: none;
}

article a:hover {
    color: blue;
}

h1 {
    font-size: 50px;
    text-align: center;
}

h2 {
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
}

h3 {
    font-size: 25x;
    text-align: center;
    text-transform: uppercase;
}

span {
    font-weight: bold;
}

nav {
    margin: 5px auto;
    max-width: 450px;
}

nav a {
    text-decoration: none;
    font-size: 15px;
    display: flex;
    text-align: center;
    justify-content: center;
    color: white;
    background-color: black;
}

main {
    margin: 0 auto;
    @media (min-width: 768px) {
        display: flex;
        justify-content: center;
    }
}


/* TOOLS DE ESCRITURA*/


/* Alinear a la izquierda */

.align-left {
    text-align: left;
}


/* Ocupar Todo */

.width-full {
    width: 100%;
}

article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    padding-inline: 2rem;
    padding-block: 3rem;
    text-align: center;
    @media (min-width: 768px) {
        text-align: left;
    }
}

.fecha {
    text-align: center;
    font-size: 16px;
}

article p {
    max-width: 75ch;
    font-size: 20px;
    margin-top: 0;
}

ul,
li {
    font-size: 20px;
    margin-bottom: 10px;
}

.imagen-portada {
    width: 350px;
    height: 262px;
    margin-bottom: 60px;
}

a img {
    display: inline-block;
    vertical-align: middle;
    /* o top/bottom, según necesites */
    border: 0;
    /* por si acaso */
}

.imagen-articulo-cuadrada {
    border: solid black 1px;
    max-width: 350px;
    margin: 10px;
    @media (min-width: 768px) {
        max-width: 800px;
        margin: 30px;
    }
}

.pie-de-foto {
    font-size: 11px;
    font-style: italic;
    margin-bottom: 30px;
}

.cursiva-cita {
    font-style: italic;
    padding-inline: 1rem;
    @media (min-width: 768px) {
        padding-inline: 5rem;
    }
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: wrap;
    padding-inline: 1rem;
}

footer p {
    font-size: 12px;
    text-align: center;
}

footer span {
    font-weight: bold;
}