html, body {
    margin: 0;
    padding: 0;
    background: white;
    width: 100%;
    font-family: 'Helvetica', 'sans-serif';
    --logo-size: min(480px, 75vw);
    --logo-font-size: calc(var(--logo-size) / 8);
    --logo-text-margin: calc(var(--logo-font-size) * 0.5);
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

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

#logo-img {
    width: var(--logo-size);
    aspect-ratio: 1;
}

#logo-txt {
    color: black;
    font-family: monospace;
    font-weight: bold;
    font-size: var(--logo-font-size);
    margin-top: var(--logo-text-margin);
}

#logo-txt > .prefix {
    color: gray;
}