@font-face {
    font-family: 'Baloo Bhaijaan 2';
    src: url('assets/fonts/BalooBhaijaan-ExtraBold.ttf');
}
body {
    margin: 0;
    overflow: hidden;
    background-color: white;
}
#splash-screen {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.splash-container {
    width: 500px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background-color: #0DADE9;
    line-height: 1;
}

#splash-screen img {
    width: 200px;
    height: 200px;
}
#splash-screen p {
    color: #FAC310;
    font-size: 57px;
    font-family: "Baloo Bhaijaan 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    margin-top: 0;
}

.dots-loading {
    display: flex;
    gap: 10px;
}

.dot {
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 50%;
    animation: blink 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0%, 80%, 100% {
        opacity: 0.3;
    }
    40% {
        opacity: 1;
    }
}

html, body {
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
}