.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

nav {
  display: flex;
}

#nav {
  display: flex;
  flex: 1;
  width: 100%;

  flex-direction: row;
  justify-content: space-evenly;

  padding-top: 2vh;
  padding-bottom: 2vh;
  margin-left: 5vw;

  font-family: 'AmaticSC-Bold';
}

.nav-item:hover .button-bg {
  filter: opacity(0.7);
}

.nav-button-container {
  position: relative;

  max-width: 250px;
  max-height: 110px;

  width: 28vw;
  height: 12vw;
}

.button-bg {
  position: absolute;

  width: 70%;
  height: 100%;

  border-radius: 10px;
}

#button-bg-1 {
  background-color: rgba(38, 179, 111, 0.8);
}

#button-bg-2 {
  background-color: rgba(236, 188, 57, 0.8);
}

#button-bg-3 {
  background-color: rgba(232, 112, 37, 0.8);
}

.nav-button {
  width: 80%;
  position: absolute;
  z-index: 1;
  filter: drop-shadow(10px 5px 5px rgba(36, 36, 36, 0.626));
}

.nav-text-container {
  width: 80%;
  height: 100%;
  display: flex;
  flex: 1;

  z-index: 2;

  align-items: center;
  justify-content: center;

  position: absolute;
}

.nav-text {
  color: black;
  text-decoration: none;
}
