* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #000040;
    color: #000040;
}

.page-wrapper {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
}

.screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    scroll-snap-align: start;
    position: relative;
}

.screen--1 {
    background: #000040;
}

.screen--2 {
    background: #000040;
}

.svg-wrapper {
    max-width: 100%;
    width: 100%;
    height: 100vh;
}

.svg-wrapper svg,
.svg-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.scroll-down__icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-0%, 0);
    }
    50% {
        transform: translate(-0%, 6px);
    }
}