@font-face {
    font-family: "Geist";
    src: url("assets/geist-font/Geist/webfonts/Geist[wght].woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
}

body {
    font-family: "Geist", sans-serif;
    width: 100%;
    margin: 0;
    color: black;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

header {
    text-align: center;
    min-height: 50px;
    background-color: rgb(219, 219, 219);

    a {
        text-decoration: none;
        color: black;
    }

    h1 {
        font-family: Georgia, 'Times New Roman', Times, serif;
        font-weight: normal;
    }
}

footer {
min-height: 50px;
    text-align: center;
    padding-bottom: 10px;

    img {
        width: 54px;
    }
}

.content {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 7vh;
    padding-bottom: 7vh;
}