html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#logo {
    width: 75vw;
    text-align: center;
}

#logo img {
    max-width: 100%;
    height: auto;
    image-rendering: pixelated;
}

#links {
    text-align: center;
    font-size: 2em;
    width: 12em;
    margin-top: -1em;
}

#links a {
    color: white;
    text-decoration: none;
}

#links-list {
    display: flex;
    list-style-type: none;
    padding: 0;
}

@media screen and (min-width: 400px) {
    #links-list {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (max-width: 400px) {
    #links-list {
        flex-direction: column;
        justify-content: center;
    }
}