header {
    display: flex;
    flex-direction: row;
    height: 80px;
    align-items: center;
    justify-content: center;
    background-color: rgb(242, 241, 236) ;
    position: fixed;
}

header ul {
    width: 50vw;
    min-width: 405px;
    margin-right: 5vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    text-align: center;
    color: black;
    border-radius: 10px;
    padding: 10px;
    transition: color 0.1s;
}

header nav a:hover {
    text-decoration: underline;
    color: coral;
}

header .higopt {
    background-color: rgb(230, 202, 155);
    flex-grow: 0;
}

header .higopt:hover {
    text-decoration: underline;
}
header .name {
    width: 45vw;
    min-width: 300px;
    text-align: center;
}

