/*
#############
    font
############
*/


body{
    margin: 0;
    font-family: arial;
    background-color: rgb(238,238,238);
}
/* 
###############
    header
###############
*/


header{
    background-color: rgb(68,68,68);
    text-align: center;
    height: 12vh;
    padding-top: 5px;
}

h1{
     color: rgb(221,87,53);
}

header p{
    text-align: center;
    color: grey;
}




/* 
###############
    Main
###############
*/

main{
    background-image: url('../img/phare.jpg');
    background-size: 100%;
    position: fixed;
    height:100%;
    left:0; 
    width:100%;
    background-repeat: no-repeat;
}

main section{
    background-color: rgba(255, 255, 128, .5);
    width: 80%;
    display: flex;
    justify-content: space-around;
    margin: 2% 10% 2% 10%;
    padding: 30px;
}

main section article{
    width: 45%;
}

main section article img{
    width: 100%;
}
/* 
###############
   Footer
###############
*/

footer{
    background-color: rgb(68,68,68);
    text-align: center;
    padding-top: 5px;
    margin-top: 0px;
    color: white;
    position: fixed;
    bottom:0;
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

footer img{
    width: 5%;
}

.orange{
    color: rgb(221,87,53);
}

footer p {
    text-align: center;
}
