*
{
    box-sizing: border-box;
}
nav
{
width: 80%;
height: 150px;
float: left;
text-align: center;
padding-left: 10;
padding-top: 20;
background-color:burlywood;
color: black;
font-size: x-large;
}
logo
{
    width: 250px;
    height: 150px;
    float: left;

    background-color:burlywood;
    color: white;  
}
main
{
    padding-left: 200px;
    padding-right: 200px;
    padding-top: 100px;
    padding-bottom: 100px;
}

a{
    color: black;
}
a:hover{
    color: red;
    background-color: antiquewhite;
}
body{
    background-color: antiquewhite;
}
footer{
    position:fixed;
    bottom:0;
    padding-left: 200px;
    padding-right: 200px;
}
 