body {
        background-color: white;
        margin: 0;
}
header {
    width: 100%;
    height: auto;
    background-color: #da532c;
    color: #ffc40d;
    font-size: 3em;
    text-align: center;
    padding: 20px;
    text-shadow: 2px 2px 5px #1d1d1d;
    display: flex;
    justify-content: space-between;
}
.menu-list {
}
a {
    text-decoration: none;
    color: #ffc40d;
}
.menu-item {
    width: 100%;
    margin: auto;
    border: 3px solid #2b5797;
    border-radius: 15px;
    padding: 5px;
    font-size: 2em;
    text-align: center;
    background-color: #2d89ef;
}

/* nav */
.basenav {
  height: 0;
  width: 100vw;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #2d89ef;
  overflow-x: hidden;
  transition: 0.5s;
}

.basenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 20px;
  color: #eff4ff;
  display: block;
  transition: 0.3s;
}

.basenav a:hover {
  color: #ffc40d;
}

.basenav .closebtn {
  position: absolute;
  bottom: 0;
  right: 5px;
  font-size: 36px;
}
.openbtn {
    font-size:20px;
    cursor:pointer;
}
.navOpen {
  height: min(20vh, 250px);
}

.backdrop {
  background-color: rgba(0,0,0,0.4);
}