/*
#############
    font
############
*/
@font-face {
    font-family: 'Roboto';
    src: url(font/roboto-Black.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

body{
    margin: 0;
    font-family: 'Roboto';
    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{
    margin:0px 10% 0px 10% ;
    display: flex;
    flex-direction: column;
}


section:first-child, section:nth-child(3){
    background-color: rgb(192,192,192);
    height: auto;
    padding: 5px 0 5px 30px;
}

section:nth-child(2){
    background-color: white;
}
/* 
###############
   Footer
###############
*/

footer{
    background-color: rgb(68,68,68);
    text-align: center;
    padding-top: 40px;
    margin-top: 0px;
    color: white;
    padding-bottom: 15px;
}

footer img{
    width: 5%;
}

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

footer p {
    text-align: center;
}
