body {
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0px;
}
h1, p {
    text-align: center;
    font-family: Atkinson Hyperlegible, Sans;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 1em;
    margin-right: 1em;
}
.container {
    display: flex;
    align-items: center;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
}
@media (max-aspect-ratio: 1) {
    /* Portrait */
    .container img {
        width: 80%;
        height: auto;
    }
}
@media (min-aspect-ratio: 1) {
    /* Landscape */
    .container img {
        height: 80%;
        width: auto;
        flex-grow: 0;
    }
}
