body {
    margin: 0;
    display: flex;
    place-items: center;
    min-width: 320px;
    min-height: 100vh;
}

#app {
    width: 100%;
    min-height: 100vh;
    text-align: center;
}

#landing-page {
    width: 100vw;
    min-height: 100vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    overflow: hidden;
    aspect-ratio: 750 / 110;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.download-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    aspect-ratio: 750 / 120;
    overflow: hidden;
}

.download-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-wrapper {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: calc(686 / 750 * 100vw);
    height: calc(210 / 750 * 100vw);
    max-width: 686px;
    max-height: 210px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px #0003;
    z-index: 10;
}

.carousel-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .5s ease-in-out;
}

.carousel-image {
    width: 100%;
    aspect-ratio: 686 / 210;
    flex-shrink: 0;
    object-fit: cover;
}

@media (min-width: 768px) {
    #landing-page {
        max-width: 750px;
        margin: 0 auto;
    }

    .header-container,
    .download-container {
        left: 50%;
        transform: translate(-50%);
    }

    .header-content,
    .download-content {
        max-width: 750px;
    }
}

@media (max-width: 750px) {
    #landing-page {
        max-width: 750px;
        margin: 0 auto;
    }
}
