@import url('https://fonts.googleapis.com/css?family=Roboto');

html, body {
   height: 100%;
   margin: 0;
   text-align: center;
   flex-direction: column;
}

header {
    background-image: url(img/image-fond.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size:cover;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: white;
    font-family: 'avenir';
    font-size: 14px;
}


.arrow {
    font-size: 20px;
    color: white;
}

.arrow:hover {
    font-size: 20px;
    background-color: rgb(0, 0, 0);
    cursor: pointer;
}

header h1 {
    margin: 10px;
    text-align: left;
    color: white;
    padding: 0px 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out; 
    transform: translate(260px, -70px);
    font-size: 130%;
    animation-duration: 2s;
    animation-name: slidein;
}

@keyframes slidein { /* Tous les autres navigateurs */
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(150px);
    }

    
}

section{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    min-height: 100%;
}

#about article {
    width: 100%;
    padding: 15px;
}

#about h2 {
    text-transform: uppercase;
    padding: 15px;
    color: grey;
}

article{
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    width: 40%;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
}
    
article:hover {
    filter: grayscale(100%);
    color: honeydew;
   
}

article h1 {
    color: rgb(163, 12, 12);
    font: bold;
}

article h2 {
    color: rgb(0, 0, 0);
    font: bold;
}

article h3 {
    color: rgb(0, 0, 0);
    padding: 6px;
    font: bold;
}

section p {
    color: rgb(64, 64, 65);
    font-size: 14px;
}

/**RESPONSIVE MOBILE**/
@media screen and (max-width: 600px){

    section 
    {
        font-family: 'roboto';
        font-size: 100%;
    }

    #main-page {
        flex-direction: column;
        width: 100%;
    }

    header h1 {
        font-size: 0%;
    }
     
}

/*TABLET AND DESKTOP*/
@media screen and (min-width: 600px) and (max-width: 900px) {

    section 
    {
        font-family: 'roboto';
        font-size: 100%;

    }

    #main-page {
        flex-direction: column;
        width: 80%;
    }


}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,.video-container object,.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
}

.chine {
    width:50%;
    height:50%;
}

#judith {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}


b {
    color: black;
    font-size: 15px;
}