body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('../../assets/fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-text {
    margin-top: -48px;
    padding-left: 1em;
    padding-right: 1em;
    font-size: clamp(10px, 3vw, 14px) !important;
    font-weight: normal;
    font-family: 'RobotoRegular';
    text-align: center;
    color: black;
    letter-spacing: 2px;
    animation: pulse 2s infinite ease-in-out;
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

lottie-player {
    width: auto;
    height: auto;
}