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


/* 
###############
    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-color: white;
    margin: 0% 20% 0% 20%;
    padding: 20px 10px 20px 10px;
}

table:nth-of-type(1) td, table:nth-of-type(2) td {
    border: 1px solid lightgrey;
    padding: 10px;
}

table:nth-of-type(1) thead th, table:nth-of-type(2) thead th{
    font-weight: bold;
    border: 1px solid rgb(221,221,221);
    padding:15px;
}

table:nth-of-type(3) td, table:nth-of-type(3) th{
    border: 1px solid rgb(221,221,221);
    padding:15px;
}

table:nth-of-type(3) {
    border-spacing: 0;
    width:100%;
    text-align: right;
}

table:nth-of-type(3) thead, table:nth-of-type(3) tbody tr td:nth-of-type(2) {
    text-align:center;
}

table:nth-of-type(3) tbody tr td:nth-of-type(1){
    text-align: left;
}

table:nth-of-type(3) tbody tr:nth-of-type(odd){
    background-color: rgb(238,238,238);
}

table:nth-of-type(3) thead tr:nth-of-type(2) td{
    border-bottom: 3px solid grey;
}

table:nth-of-type(3) tfoot tr td{
    border-top:3px solid grey;
}

table:nth-of-type(3) thead tr:nth-of-type(1){
    padding: 20px;
    font-size: 30px;
}

table:nth-of-type(3) thead tr:nth-of-type(2){
    font-weight: bold;
}

/* 
###############
   Footer
###############
*/
footer{
    background-color: rgb(68,68,68);
    border: 1px solid black;
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    color: white;
    padding-bottom: 15px;
}

footer img{
    width: 7%;
}

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

footer p {
    text-align: center;
}

