#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center; /* This will center the child vertically */
    justify-content: center; /* This will center the child horizontally */
    z-index: 10000;
    text-align: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif!important;
}

#loading-text {
    font-size: 26px;
    font-weight: bold;
    width: 80%;
    /* Removed the absolute positioning and the transform properties */
    animation: pulse 1.7s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@media (min-width: 600px) {
    #loading-text {
        font-size: 32px;
    }
}

@media (min-width: 992px) {
    #loading-text {
        font-size: 48px;
    }
}