/*
	Auteur		: Evence Chenaux
	Date		: 19.01.2022
	Descritption: Article Russell Westbrook MVP
*/


/*titres des aritcles */

h1 {
    text-align: center;
    font-size: xx-large;
    color: white;
}


/*toute la page avec le footer */

body,
.footer {
    font-family: Arial;
}


/* le fond de la page "arrière plan" */

.background {
    background-color: black;
    background-image: url("./Image/embleme.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    background-attachment: fixed;
}


/* les vidéos du site */

.video {
    display: block;
    text-align: center;
    width: 100%;
    background-color: black;
}


/* tous les articles à gauche */

.articleleft {
    color: white;
    background-color: rgba(0, 122, 193, 0.50);
    left: 0;
    right: 0;
    max-width: 100%;
    width: 40%;
    border: 2px solid;
    padding: 30px;
    margin: 2px auto;
    border-radius: 30px;
    border-color: #007AC1;
    font-family: Arial;
    margin-left: 10%;
    vertical-align: middle;
}


/* tous les articles à droite */

.articleright {
    color: white;
    background-color: rgba(0, 122, 193, 0.50);
    left: 0;
    right: 0;
    max-width: 100%;
    width: 40%;
    border: 2px solid;
    padding: 30px;
    margin: 2px auto;
    border-radius: 30px;
    border-color: #007AC1;
    font-family: Arial;
    margin-right: 10%;
    vertical-align: middle;
}


/* les textes alignés à gauche */

.textleft {
    text-align: left;
}


/* tous les images à gauche*/

.imgleft {
    width: 30%;
    float: left;
    margin-left: 10%;
}


/* tous les images à droite */

.imgright {
    width: 30%;
    float: right;
    margin-right: 10%;
}


/* bloc article */

.blockarticle {
    display: inline-block;
}


/* le texte qui sa situe sur la page d'accueil */

#accueil {
    color: white;
    background-color: rgba(0, 122, 193, 0.50);
    width: 80%;
    border: 2px solid;
    padding: 30px;
    margin: 2px auto;
    border-radius: 15px;
    border-color: #007AC1;
    font-family: Arial;
}


/* la navigation qui est sur toutes les pages */

#nav {
    justify-content: space-around;
    display: flex;
    padding: 1%;
    text-align: center;
    background: #0099ff url('nav_bg.jpg') 0 0 repeat-x;
    border: 1px solid #0099ff;
    border-width: 1px;
    height: 100%;
}


/* quand on passe la souris sur la navigation */

a:hover {
    color: black;
    background: white;
    padding: 1%;
    border-radius: 50%;
}


/* le texte dans le menu*/

#nav li {
    display: inline;
}


/* text du menu avant d'avoir cliquer dessus*/

a {
    text-decoration: none;
}


/* la navigation pour savoir sur quel page ou on est */

.nav123 {
    color: black;
    background: white;
    padding: 1%;
    border-radius: 50%;
}


/* heure dans le site*/

#afficherheure {
    text-align: center;
    color: white;
}


/* date dans le site */

#afficherdate {
    text-align: left;
    color: white;
}


/* le pied de page */

.footer {
    color: white;
    bottom: 0;
    position: relative;
}


/* le pied de page de la page projetrwrole*/

#footer {
    color: white;
    bottom: 0;
    position: absolute;
}


/* la vidéo à gauche de la page d'accueil*/

.videoleft {
    border: 0;
    text-align: left;
    float: left;
    height: 316px;
    width: 30%;
}


/* la vidéo à droite de la page d'accueil*/

.videoright {
    border: 0;
    text-align: right;
    float: right;
    display: block;
    height: 316px;
    width: 55%;
}

@media screen and (max-width: 500px) {
    #nav {
        display: flex;
        flex-direction: column;
    }
}