/* Loading screen styles */
.loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f2abbc;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loadingText {
    font-size: 22px;
    padding-left: 12px;
    color: white;
    font-family: Hepta Slab, sans-serif;
}

/* Spinning animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

.loader {
    border: 4px solid #4D3549;
    border-top: 4px solid #F15533;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}