body {
    height: 100%;
    margin: 0;

    background-image: url('/2.png');
    background-size: cover;
    background-position: center;
    font-family: "libre-franklin", sans-serif;
}

/* ---------- HEADER ---------- */
header, main {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* ---------- NAV ---------- */
nav {
    text-align: center;
}

nav a {
    display: block;
    margin: 0 0 1rem 0;
    font-size: 50px;
    text-decoration: none;
    color: #fff;
}

nav a:hover {    
    text-decoration: underline;
    color: #ff1616;
}

/* ---------- FOOTER ---------- */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p {
    font-size: .625rem;
    color: #fff;
}

footer a {
    text-decoration: none;
    color: #fff;    
}

footer a:hover {
    text-decoration: underline;  
}

/* ---------- MAIN ---------- */
main p {
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 0px 0px 10px #000;
}