@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: raleway,Sans-Serif;
    overscroll-behavior: contain;
}

header {
    padding: 16px;
    color: black;
}

.navbar:not(#homenav) {
    background-color: #ffda00;
    overflow: hidden;
    white-space: nowrap;
}
  
.navbar:not(#homenav) a {
    float: left;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    background-color: #ffda00;
}
  
.navbar:not(#homenav) a:hover {
    background-color: black;
    color: #ffda00;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.content {
    background-color:white;
    padding:16px;
    display: block;
}

footer {
    border-top: 4px solid #ffda00;
    color: white;
    background-color: black;
    padding: 16px;
}

a {
    color:#017C8F;
}

a:hover {
    color: #ffda00;
}

@media screen and (max-width: 600px) {
    .navbar a:not(:first-child, :last-child), #homenav a:not(:first-child, :last-child) {
        display: none;
    }
}

@media screen and (min-width: 601px) {
    #mnavbutton {
        display: none;
    }
}

.mnav {
    background-color: #ffda00;
    overflow: hidden;
    white-space: nowrap;
    display: none;
    transition: all 1s linear;
    position: fixed;
    top: 0;
    width: 100%;
}
  
.mnav a {
    float: left;
    color: black;
    text-align: left;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    background-color: #ffda00;
    width: 100%;
    margin: auto;
}

.mnav a:hover {
    background-color: black;
    color: #ffda00;
}

.mnav.visible {
    display: block;
    width: 100%;
}

.navbar.invisible {
    display: none;
}