* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: rgb(13, 13, 13);
    display: grid;
    place-items: center;
    color: cyan;
    width: 100dvw;
    height: 100dvh;
}
p {
    font-size: 3rem;
    font-style: italic;
    opacity: 0.5;
}
.nav-container a {
    text-decoration: none;
    color: rgb(0, 220, 220);
    font-size: 2.5rem;
    font-family: 'Abril Fatface', cursive;
    text-shadow: -2px -2px 2px rgb(0, 80, 80);
}