html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #1D1D1B;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    min-height: 100vh;
}

.logo {
    width: 512px;
    height: auto;
}

.typography {
    width: 256px;
    height: auto;
}

@media screen and (max-width: 639px),
screen and (max-height: 799px) {
    .logo {
        width: 256px;
    }

    .typography {
        width: 128px;
    }
}