.hoverable {
  font-family: 'Zombie', 'Futura', 'Roboto', sans-serif;
  display: inline-block;
  backface-visibility: hidden;
  vertical-align: middle;
  position: relative;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

#navbar {
  height: 100px;
  text-align: center !important;
  background-color: rgba(7, 0, 15, 0.98);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  box-shadow: 0px 0px 10px 7px rgba(7, 0, 15, 0.98);
  margin-bottom: 60px;
  min-width: 1440px;
}

.nav-list {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 48px;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav {
  font-family: 'Zombie', 'Futura', 'Roboto', sans-serif;
}

nav li {
  display: inline-block;
  margin-left: 16px;
  margin-right: 16px;
}

.nav-list > li > a {
  color: ghostwhite !important;
  letter-spacing: 2px;
  font-family: 'Zombie', 'Futura', 'Roboto', sans-serif;
  text-decoration: none;
}

a.hoverable:hover {
  animation: white_glow_small 1.333s linear infinite;
}

a.dropdown-item:hover {
  animation: none;
}

span.caret {
  display: inline-block;
  margin-left: 3px;
  border-top: 6px dashed;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  color: ghostwhite;
}

.dropdown-menu {
  display: none;
  position: absolute;
  margin-top: 17px;
  margin-left: -25%;
  background-color: #c8c8dc;
  border-radius: 7px;
  border: none;
  box-shadow: 0px 0px 5px 5px #c8c8dc;
  transform: translatex(0px);
  transform: translatey(0px);
  animation: float_xy 15s ease-in-out infinite;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  margin-top: -17px;
  top: 0;
  height: 17px;
  width: 100%;
}

.dropdown-menu > li {
  display: block;
}

.dropdown-menu > li > a {
  font-family: 'VT323', monospace;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-size: 25px;
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 5px 10px;
}

.dropdown-menu > li > a:hover {
  color: rgba(7, 0, 15, 0.98);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

@-webkit-keyframes white_glow_small {
  0% {
    text-shadow: 0 0 10px #ffffff;
  }
  50% {
    text-shadow: 0 0 3px #54b54166, 0 0 5px #ffffff66, 0 0 7px #ffffff66,
      0 0 9px #ffffff66, 0 0 11px #54b54166, -5px 0 7px #00ff0066,
      0 0 9px #ff000066, 5px 0 11px #0000ff66;
  }
  100% {
    text-shadow: 0 0 10px #ffffff;
  }
}
