/*
#############
    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{
    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;
}

section article{
    padding: 20px;
}
/* 
###############
   Footer
###############
*/

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

footer img{
    width: 5%;
}

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

footer p {
    text-align: center;
}
