*{
    margin: 0;
    padding: 0;
}

header{
    background-color: aqua;
    display: flex;
    align-items: center;
}
header img{
    width: 100px;
    flex: 0;
}
header nav{
    flex: 1;
    display: flex;
    justify-content: space-evenly;
}

header nav a{
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    transition: .5s;
}

header nav a:hover{
    transform: scale(1.1);
    color: blue;
}
footer{
    background-color: burlywood;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;

}
main{
    padding: 10px;
}