Le NORCA








body {


background-color: #000000;


margin: 0;


padding: 0;


display: flex;


justify-content: center;


align-items: center;


height: 100vh;


font-family: Arial, sans-serif;


}



h1 {


color: #ffffff;


text-align: center;


font-size: 5vw;


margin: 20px;


/* Animation de mouvement vertical */


/* animation: slideUp 5s ease-in-out; */



/* Animation de fondu entrant */


animation: fadeIn 4s ease-in-out;


}



@media (max-width: 600px) {


h1 {


font-size: 6vw;


}


}



/* Keyframes pour l'animation de mouvement vertical */


/*@keyframes slideUp {


from {


transform: translateY(100%);


}


to {


transform: translateY(0);


}


}*/



/* Keyframes pour l'animation de fondu entrant */


@keyframes fadeIn {


from {


opacity: 0;


}


to {


opacity: 1;


}


}






SAV IPS