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

html,
body {
    height: 100%;
    font-family: "Libre Baskerville", serif;
    font-size: 8px;
    background-color: #a8a8a8;
}

.active {
    font-weight: 700;
}

h1 {
    font-size: 4rem;
    line-height: 1.8;
    text-align: center;
}

p {
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

a {
    display: block;
    text-decoration: none;
    color: black;
    font-size: 5rem;
}

nav {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-left: 5vw;
    padding-right: 5vw;
    margin-top: 5vh;
    margin-bottom: 5vh;
}

nav a {
    font-size: 2rem;
    font-variant: small-caps;
}

a:hover {
    text-decoration: line-through;
    text-decoration-thickness: 3.5px;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 1vw;
    row-gap: 2vh;
    padding: 2vh 2vw;
}

.title {
    grid-column: span 3;
    margin-top: 3vh;
    margin-bottom: 3vh;
}

.divider {
    grid-column: 1 / 4;
    height: 2px;
    background-color: black;
    width: 100%;
    margin-top: 3vh;
}

.divider[aria-hidden="true"] {
    pointer-events: none;
}

.one {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.two {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.three {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.dos {
    grid-column: 1 / 4;
    grid-row: 4 / 5;
}

.four {
    grid-column: 1 / 4;
    grid-row: 5 / 6;
}

.divider-tres {
    grid-column: 1 / 4;
    grid-row: 6 / 7;
}

.tres {
    grid-column: 1 / 4;
    grid-row: 7 / 8;
}