body {
    inset: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: fixed;
    background-color: #121c4e32;
}

#loading {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}

#loading img {
    border-radius: 8%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: 1s ease-in-out 0s infinite alternate breathe;
}

@keyframes breathe {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(0.95)
    }
}

#loading-text {
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    font-family: 'AvenirLTStd-Black', sans-serif;
    color: #121c4e;
}

.loading-dot {
    animation: dot-anim 1.5s infinite ease-in-out;
    opacity: 0;
    font-size: 24px;
}

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

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

@keyframes dot-anim {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}