.menu{
    display: flex;
    position: fixed;
    flex-direction: row;
    width: 100%;
    top : 0;
    background-color: rgb(89,20,17);
    margin:0;
    padding-bottom: 1%;
    padding-top: 1%;
    padding-left: 0;
}
.menu > a {
    display: flex;
    justify-content: center;
    text-decoration: none;
    font-size: 100%;
    width: 100%;
    color: white;
    background-color: rgb(89,20,17);
}

a:hover{
    color: red;
}