header {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    min-height: 5em;  
}

nav {
    margin-right: 2em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5em;
    font-size: 24px;
    font-weight: 700;
}

nav a {
    text-decoration: none;
    color: #ffed00;
}

nav a:hover {
    cursor: pointer;
}


@media screen and (max-width: 1260px) {
    
    header {
        justify-content: center;
    }
    nav {
        margin-right: 0;
    }
}