body { /* règles principales du contenu de la page ainsi que son fond */
    background-image: url(../medias/fond.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

p { /* personnalisation du paragraphe central en haut */
    font-size: 20px;
    white-space: pre-wrap;
    color: #fff; /* blanc */
    font-family: Arial;
    opacity: 0.75; 
}

h1 { /* personnalisation du compte à rebours */
    color: #fff; /* blanc */
    font-size: 60px;
    border-bottom: 5px solid #fff; /* blanc */
    width : 50%;
}

h1:hover { /* animation lorsque la souris est sur le compte à rebours */
    text-shadow: 0 0 10px #ff8181; /* rouge clair */
    font-size: 62.5px;
    transition: text-shadow 0.1s ease-in-out;
    transition: font-size 0.1s ease-in-out;
}

h1:not(:hover) { /* animation lorsque la souris part du compte à rebours */
    font-size: 60px;
    transition: font-size 0.1s ease-in-out;
}

h2 { /* personnalisation de la barre de chargement */
    color: #fc9393; /* rouge clair */
    background-color: #fff; /* blanc */
    opacity: 0.7;
    border-radius: 30px;
    width: 800px;
    border-bottom: 5px solid #ffbaba; /* rouge pâle */
    padding: 10px 40px;
}

h2:hover { /* animation lorsque la souris est sur la barre de chargement */
    font-size: 27.5px;
    color: #b67171; /* rouge légèrement gris */
    background-color: #cecece; /* gris */
    border-bottom: 5px solid #aa7c7c; /* rouge très gris */
    transition: font-size 0.1s ease-in-out;
}

h2:not(:hover) { /* animation lorsque la souris part de la barre de chargement */
    font-size: 25px;
    transition: font-size 0.1s ease-in-out;
}

ul { /* personnalisation de l'ensemble des rubriques en haut à gauche de la page */
    width: 200px;
    float: left;
    margin: 0 20px 0 0;
    padding: 20px 0;
    background-color: transparent;
    display: flex;
    list-style-type: none;
    margin-left: 20px;
}

ul li { /* personnalisation des rubriques entre elles */
    margin-right: 30px;
}
  
a { /* personnalisation individuelle de chaque rubrique */
    color: #fff; /* blanc */
    font-size: 35px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

a:hover { /* animation lorsque la souris est sur une rubrique */
    font-size: 37px;
    text-shadow: 0 0 10px #fff; /* blanc */
    transition: text-shadow 0.2s ease-in-out;
    transition: font-size 0.2s ease-in-out;
}

a:not(:hover) { /* animation lorsque la souris part d'une rubrique */
    font-size: 35px;
    transition: font-size 0.2s ease-in-out;
}


