body {
    background-color: black;
    color: white;
    background-image: url('../images/background.webp');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: 80%;
    background-size: max(125vh, 100vw);
    height: 100vh;
    margin: 0;
}

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

a:hover {
    font-style: italic;
}

.container {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.main {
    width: 50%;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
}

.main nav {
    align-self: flex-end;
    display: flex;
    gap: 1.5rem;
    box-sizing: border-box;
}

.main footer {
    color: #999;
    text-align: center;
}

@media(max-width: 1000px) {
    .main {
        width: 90%;
    }
}
