html {
    background-color: #fcf5f5;
}

/* TEXT */
@font-face {
    font-family: 'Mondwest';
    src: url("/fonts/Mondwest.otf");
}
* {
    font-family: 'Mondwest', serif;
}

p,li {
        font-size: 1.02rem;

}

.center {
    text-align: center;
}

/* OH YEAH ITS GRID TIME BABY */
body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

header {
    grid-column: 1;
    grid-row: 1 / span 2;
    border-right: 2px solid black;
}

main {
    grid-column: 2 / 7;
    grid-row: 1 / span 2;
    padding-left: 1%;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20%;
}

.two-col *:nth-child(odd) {
    justify-self: end;
}

footer {
    grid-column: 1 / 8;
    grid-row: 3;
    border-top: 2px solid black;
}


/* NAVIGATION */
h2 a {
    color: black;
    text-decoration: none;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 5% 0;
}

nav ul li a {
    text-decoration: none;
}

nav ul li a:hover {
    background-color: black;
    color: white;
    font-style: italic;
}

/* LINKS */
a {
    color: black;
}

a:hover {
    text-decoration: none;
}

/* OTHERS */
.imgcenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
