.loading-message-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55%;
    width: 100%;
    
    font-family: AusAlpine1;
    font-size: 60px;
    color: rgb(216, 31, 31);
}

.spinning-image {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 250px;
    transform: translate(-50%, -50%);

    animation: slow-spin 5s linear infinite;
}

@keyframes slow-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}