@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html, body {
    height: 100%;
    margin: 0;
    background-color: #176D60;
}

.body {
    height: 100vh;
    width: 100vw;
    background-color: #176D60;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4vh;
    padding: 16px;
    box-sizing: border-box;
    margin-top: -15vh;
    opacity: 1;
    transform: scale(1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-container.done {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.splash-logo {
    width: 200px;
    height: 200px;
}

.center {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contain {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stretch {
    display: block;
    width: 100%;
    height: 100%;
}

.cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.bottomLeft {
    position: absolute;
    bottom: 0;
    left: 0;

    .bottomRight {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    @media (prefers-color-scheme: dark) {
        body {
            background-color: #2e8578;
        }
    }
}

.shimmer {
    font-weight: 700;
    font-size: 32px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 25%, #FEA801 50%, rgba(0, 0, 0, 0.4) 75%);
    background-size: 200% 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    50% {
        background-position: 0% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.shimmer-text {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: clamp(38px, 8vw, 48px);
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 25%, #FEA801 50%, rgba(0, 0, 0, 0.4) 75%);
    background-size: 200% 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shimmer 4s infinite;
    letter-spacing: 1px;
}

@media screen and (max-width: 480px) {
    .splash-logo {
        width: 180px;
        height: 180px;
    }
    
    .shimmer-text {
        font-size: clamp(32px, 9vw, 42px);
    }
}