body{
    background-color: rgb(78, 78, 78);
}
header{
    background-color: red;
}
header>img{
    height: 60px;
    width: 60px;
}
header>nav{
    display: flex;
    flex-direction: row;
    align-items: center;    
    text-align: center;
}
.menu>a{
    color: white;
    text-decoration: none;
    margin-left: 20px;
}
.menu a:hover {
    background-color: white;
    color: rgb(255, 0, 0);
}
.menu{
    display: flex;
    justify-content: center;

}
footer{
    text-align: center;
    background-color: red;
    text-align: center;
    color: white;
    height: 60px;
}
.footerA{
    text-decoration: none;
    color: white;
}
footer a:hover{
    background-color: white;
    color: rgb(255, 0, 0);
}
