/*ceci est le fichier CSS qui se retrouve sur toute les page sauf la page d'accueil*/
/****************
*Entête des page*
*****************/
header {
    background-color: orange;
    display: flex;
    justify-content: center;
    padding: 30px;
}
.senju {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    position: fixed;
    top: 15px;
    right: 25px;
}
/*****************
*menu            *
******************/
nav{
    width: 120px;
    height: 120px;
    border-radius: 20px;
    position: fixed;
    top: 15px;
    right: 25px;
    background-color: black;
    

}

nav:hover{
    height: 450px;
    transition: all 1s ease;
    text-align: center;
}

nav:hover ul{
    overflow: visible;
    opacity: 1;
    transition: all 2s ease-in-out;
} 

ul{
    padding-top: 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: fixed;
    right: 34px;
    max-height: 0;
    text-align: center;
    overflow: hidden;
    opacity: 0;
}

li{
    font-size: 20px;
    list-style: none;
    padding-top: 20px;
    color: beige;
    display: flex;
    align-items: center;
    text-align: center;

}
    
a{
    color: beige;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
    text-align: center;
    font-size: 17px;
}

a:hover{
    color: orange;
}

#menu_actif{
    color: brown;
}
/*transition entre les page*/
@view-transition{
    navigation:auto;
}
/****************
*Contenu        *
*****************/
body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: orange;
}

h2, h3{
    text-align: center;
    font-size: 30px;
}

footer{
    display: flex;
    justify-content: center;
    background-color: orange;
}
.footer{
    width: 250px;
}

main{
    background-color: rgb(196, 111, 0);
    padding: 20px;
    border-radius: 10px;
}   

