/* Réinitialisation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corps de la page */
body {
    background-color: #18181b; /* Fond noir */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Désactive le scroll dans toutes les directions */
}

/* Conteneur du logo */
.logo-container {
    text-align: center;
}

/* Logo */
.logo {
    max-width: 225px; /* 75% de 300px */
    height: auto;
    animation: spin 8s linear infinite; /* Animation de rotation */
}

/* Animation de rotation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
