#header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding:40px;
}
.logoMonades{
    max-width: 175px;
    border-radius: 100%;
    box-shadow: 0 2px 5px rgba(245, 245, 245, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}    
.logoMonades:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(245, 245, 245, 0.2);
}
.linkMenu{
    font-weight: bold;
    transition: color 0.3s ease;
}
.linkMenu:hover {
    color: hsl(205deg 65.01% 41.6%);
}
.linksMenu {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
@media (min-width: 375px) {
}
@media (min-width: 425px) {
}
@media (min-width: 768px) {
    #header{
        flex-direction: row;
    }
}
@media (min-width: 1024px) {
    .linksMenu {
        flex-direction: row;
        gap: 30px;
    }
}
@media (min-width: 1440px){
}