/* CSS qui touche l'Ensemble de la page */

body{
    background-color: rgb(255, 0, 0);
}

/* CSS du Header de la Page (Image + Nom Et Prenom)*/

header img{
    width: 6%;
    height: 6%;
}
header h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    margin: -80px 130px 10px;
    color: #fff;
}

/* CSS du Menu de Navigation */

nav ul{
    display: flex;
    padding: 0;
    background-color: rgb(255, 240, 0);
    justify-content: center;
    border-radius: 5px;
}
nav ul li{
    list-style-type: none;
    font-size: 50px;
}
nav ul li a{
    display: block;
    min-width: 350px;
    margin: 5px;
    padding: 0.4rem 0;
    text-decoration: none;
    text-align: center;
    color: rgb(50, 50, 50);
    border: 2px solid rgb(255, 240, 0);
}

/* CSS Reactif */
nav ul li a:hover{
    background-color: rgb(175, 165, 25);
    border-radius: 25px;
    border-color: rgb(240, 225, 20);
}
nav ul li a:active{
    background-color: rgb(100, 100, 25);
    border-radius: 25px;
    border-color: rgb(240, 225, 20);
}

/* CSS de la Partie Principale du Site */

.rub{
    font-size: 35px;
    text-align: justify;
}
/* CSS de la Rubrique Administratif */
#admin{
    background-color: rgb(20, 40, 160);
    color: rgb(255, 115, 0);
}
#admin h2{
    font-size: 60px;
    text-align: left;
    color: rgb(255, 166, 0);
}
/* CSS de la Rubrique Scolarité */
#sco{
    background-color: rgb(20, 135, 10);
    color: rgb(255, 0, 183);
}
#sco h2{
    font-size: 60px;
    text-align: center;
    color: rgb(255, 0, 106);
}
/* CSS de la Rubrique Projets */
#proj{
    background-color:rgb(135, 10, 100);
    color: rgb(20, 255, 0);
}
#proj h2{
    font-size: 60px;
    text-align: right;
    color: rgb(0, 255, 136);
}
/* CSS de la Rubrique Personnel */
#perso{
    background-color: rgb(255, 115, 0);
    color: rgb(0, 40, 255);
}
#perso h2{
    font-size: 60px;
    text-align: center;
    color: rgb(0, 110, 255);
}
#perso p a{
    text-decoration: none;
    color: rgb(0, 225, 255);
}

/* CSS Reactif */

/* Rubrique Administratif */
#admin:hover{
    background-color: rgba(20, 40, 160, 0.8);
    color: rgba(255, 115, 0, 0.8);
}
#admin h2:hover{
    color: rgba(255, 166, 0, 0.8);
}
/* Rubrique Scolarité */
#sco:hover{
    background-color: rgba(20, 135, 10, 0.8);
    color: rgba(255, 0, 183, 0.8);
}
#sco h2:hover{
    color: rgba(255, 0, 106, 0.8);
}
/* Rubrique Projets*/ 
#proj:hover{
    background-color:rgba(135, 10, 100, 0.8);
    color: rgba(20, 255, 0, 0.8);
}
#proj h2:hover{
    color: rgba(0, 255, 136, 0.8);
}
/* Rubrique Personnel*/
#perso:hover{
    background-color: rgba(255, 115, 0, 0.8);
    color: rgba(0, 40, 255, 0.8);
}
#perso h2:hover{
    color: rgba(0, 110, 255, 0.8);
}

/* CSS du Footer */
footer p{
    text-align: right;
    font-size: 25px;
    color: rgb(255, 255, 255);
}