.loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: radial-gradient(circle, #ffdfb3 0%, #ff9900 100%);
    font-family: Arial, sans-serif;
    text-align: center;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.loader {
    width: 100px;
    height: 100px;
    background-image: url('icons/football.svg');
    background-size: cover;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 15px;
}