body {
    font-family: 'Space Mono', monospace;
    background-color: #ffffff;
    /* White background */
    color: #000000;
    /* Black text */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

h1 {
    font-size: 4rem;
    letter-spacing: 2px;
}

nav {
    position: absolute;
    top: 20px;
    right: 50px;
}

nav a {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Tablet */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    nav {
        right: 30px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }

    nav {
        top: 15px;
        right: 20px;
    }

    nav a {
        font-size: 0.875rem;
    }
}