@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-wrapper img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.redirect {
    font-size: 3rem;
    color: #002B92;
    text-align: center;
    padding: 1rem 2rem;
}

.dots {
    display: inline-flex;
    gap: 0.25rem;
    margin-left: 0.4rem;
}

.dots span {
    opacity: 0.15;
    font-weight: 700;
    animation: dotPulse 1s infinite;
}

.dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes dotPulse {
    0% {
        opacity: 0.15;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-4px);
    }

    100% {
        opacity: 0.15;
        transform: translateY(0);
    }
}