body {
    display: flex;
    flex-direction: column;
    background-image: url('./../SRC/logo_fond_noir_teste.png');
    background-color: black;
    /*Met l'image en arrière plan*/
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    height: 100vh;
    justify-content: space-between;
}
/*transition du menu*/
.transition {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 2s forwards;

}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

div {
    box-shadow: 5px 10px 20px 5px rgb(255, 0, 149);
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #FFDAD8;
    border-radius: 15px;
    margin-top: 20px;
    margin-left: 120px;
    margin-right: 120px;

}

h1 {

    width: 15vh;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f4EB49;
    justify-content: space-around;
    border-radius: 10%;
    border: 2px solid #f4EB49;
    background-color: #ec82b3;
}

div h1:hover {
    transition-duration: 0.3s;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f4EB49;
    align-items: center;
    justify-content: space-around;
    border-radius: 10%;
    border: 2px solid #f4EB49;
    background-color: rgb(228, 100, 228);
    transform: translateX(-5px);
    /* se deplace de -5 pixel en axe x*/
    transform: translateY(5px);
    /* se deplace de 5 pixel en axe ^y*/
    box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
    /* ligne de code prise https://getcssscan.com/css-box-shadow-examples.*/
}

#active {
    width: 15vh;
    display: flex;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f4EB49;
    justify-content: space-around;
    border-radius: 10%;
    border: 2px solid #f4EB49;
    background-color: #E93578;
}

footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    color: rgb(0, 0, 0);
    background-color: white;
    padding-top: 20px;
    padding-bottom: 40px;
    background-color: #FFDAD8;
}
footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    color: #f4EB49;
}
#dateTemps{
    color: black;
    display: flex;
    padding-left: 0px;
}
/*Médiaquerie*/
@media screen and (max-width: 1100px) {
    div {
        justify-content: center;
        width: fit-content;
        display: flex;
        flex-direction: column;
    }

    nav {
        display: flex;
        justify-content: center;
    }
}