* {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

a:link, a:active, a:visited {
    color: #000;
    text-decoration: none;
    font-style: italic;
    font-weight: 700;
}

.wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.splash img {
    display: block;
    width: 85%;
    max-width: 661px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

nav {
    margin: 0 auto;
    padding: 3em 0 .5em;
}

nav ul {
    display: flex;
        align-items: center;
        flex-flow: row nowrap;
        gap: 1em;
        justify-content: center;
}

nav ul li {
    list-style-type: none;
    flex-shrink: 0;
}

nav ul li img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: auto;
}

footer {
    font-size: .75em;
    text-align: center;
}

@media (max-width: 750px) {
    .splash img {
        width: 100%;
    }
}