body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

header {
    padding: 3% 5%;
    width: 90vw;
    background-color: aliceblue;
    display: flex;
    align-items: center;
    box-shadow: grey 0px 3px 10px;
}

header>img {
   width: 20%;
}

header>ul {
    margin: 0;
    width: 80%;
    display: flex;
    justify-content: flex-end;
    gap: 10%;
}

header>ul>li {
    list-style: none;
}


header>ul>li>a {
    text-decoration: none;
    color: black;
    width: 100px;
}

.buttonMenu:hover {
    background-color: blue;
    color: white;
    border-radius: 5px;
    transition: 300ms;
    
}

#par {
    color: red;
}