header{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    margin:40px;
}
.logo{
    width:150px;
}
header .links{
    display: flex;
    flex-direction: row;
    align-items:center;
}
header .link{
    color: var(--secundary);
    text-decoration: none;
    margin-left: 25px;
    font-size: 24px;
}
header .link:hover{
    color:var(--secundary-stroke);
}