.menu {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: black;
    padding: 5px;
    z-index: 1000;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    flex: 1;
    text-align: center;
}

.menu a {
    text-decoration: none;
    color: white;
    background-color: #333;
    display: block;
    padding: 20px;
    margin-right: 6px;
}

.menu a:hover {
    background-color: grey;
}