* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000000;
    font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-container {
    container-type: size;
    container-name: app;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    background-color: var(--color-background-start);
}

@media (min-aspect-ratio: 16/9) {
    .app-container {
        height: 100vh;
        width: 177.78vh;
    }
}

@media (max-aspect-ratio: 16/9) {
    .app-container {
        width: 100vw;
        height: 56.25vw;
    }
}

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-duration-normal) ease-in-out, visibility var(--transition-duration-normal);
}

.screen.active {
    opacity: 1;
    visibility: visible;
}

.app-logo {
    position: absolute;
    top: 3.5cqh;
    left: 1.5cqw;
    height: 5cqh;
    width: auto;
    z-index: var(--z-index-content);
    pointer-events: none;
}