.menubutton {
    display: none !important;
}

nav {
    padding-bottom: 2rem;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: none !important;
}

nav li {
    text-align: center;
    display: inline;
    margin-right: 1rem;
}

nav a {
    text-decoration: none;
    background: skyblue;
    color: black;
    border-radius: 50px;
    border: black 2px solid;
    padding: 1rem 1rem;
    font-size: 16px;
}

nav a:hover,
nav a:focus {
    background: black;
    color: white;
}

.current {
    background: white;
    color: black;
}

@media screen and (min-width: 600px) {
    nav a {
        padding: 1rem 3rem;
        font-size: 150%;
    }
    .header {
        font-size: 300%;
    }
}
