html, body {
    background-color: #231f20ff;
    width: 100vw;
    height: 100vh;
    font-family: serif;
    color: white;
    font-weight: bold;
    font-size: 3.5vw;
    margin: 0;
    padding: 0;
}

#main {
    display: flex;
    height: 100vh;
    justify-content: center;
}

#inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (orientation: landscape) {
    .logo {
        width: 50vh;
    }
}

.logo img {
    width: 100%;
    max-width: 975px;
}

.contact {
    margin-top: 20px;
}

.contact a {
    color: white;
    text-decoration: none;
}

