.loading-container {
    display: flex;
    animation: popUp 1s ease-out;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.loading-container-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.loading-logo {

    width: 150px;
    height: 150px;
    animation: rotate 1.6s linear infinite;
}

.loading-logo-2 {

    width: 150px;
    height: 150px;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes popUp {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-text {
    margin-top: 20px;
    font-size: 20px;
    animation: fade 1.8s ease-in-out infinite;
    color: var(--color-secondary);
    text-shadow: 0 0 10px var(--color-secondary),
        0 0 50px rgba(255, 255, 255, 0.2);
}

@keyframes fade {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}