body {
  background: #ffe6ba; 
}

.banner {
    background: #150a00;
    padding: 40px;
    width: 100%;
    top: 0;
    left: 0;
    font-family:lato;
    position: fixed;
    transition: 0.4s;
    /* animation: mymove 5s infinite; */
}

.navbar {
  text-align: left;
  background: #212121;
  padding: 40px;
  width: 14.5em;
  height: 100%;
  top: 0;
  left: 0;
  font-family:lato;
  position: fixed;
  transition: 0.4s;
  /* animation: mymove 5s infinite; */
}

a {
  color: #ff6f00;
  text-decoration: underline;
  transition: 0.1s;
  cursor: pointer;
}

a:hover {
  text-shadow: 0 0 1px;
  text-decoration-thickness: 0.1em;
}

a:active {
  text-shadow: 0 0 2px;
  letter-spacing: 0.07em;
}

.title {
  font-family:serif;
  font-size: 84px;
  line-height: 90px;
  color: #ff4800;
}

.title-image {
  min-height: 400px;
  width: 100%;
  background-color: #f7c49d;
}

button {
  background-color: #d1bb9e;
  border: 1px solid #000000;
  border-radius: 10px;
  min-height: 40px;
  cursor: pointer;
  width: 100%;
  transition: 0.1s;
}

button:hover {
  box-shadow: 0 0 5px rgb(96, 96, 96);
  border-radius: 20px;
}

::selection {
  background-color: #ffcb64;
  color: #ff4800;
}


.navdropdown {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-out, max-height 0.5s ease-out;

}

.navdropdown.visible {
  opacity: 1;
  max-height: 1000px;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-100%); /* Start above the container */
    opacity: 0;
  }
  to {
    transform: translateY(0); /* End at its natural position */
    opacity: 1;
  }
}