body {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #333;
}

.loading-container {
    position: relative;
    width: 100px;
    height: 100px;
    text-align: center;
}

.loading-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 4px solid white;
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    position: absolute;
    top: calc(50% + 80px);
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 38px;
    font-family: 'Roboto', sans-serif; 
    opacity: 0;
    transition: opacity 1s ease-in-out;
    white-space: nowrap;
}

@media screen and (max-width: 425px) {
    .loading-text {
        white-space: normal;
		font-size: 28px;
    width: 260px;
    }
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
