body {
  font-family: 'Risque', sans-serif;
  font-size: 25px;
  background-image: url(https://www.liamoutloud.com/Liam-Out-Loud/liam-out-loud-roller-coaster-morel-mushroom-backdropper.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

a {
  color: #ff0000; /* red */
  text-decoration: none; /* remove underline */
  font-weight: bold;
}

.bold-yellow {
  font-weight: bold;
  color: #F8E36C;
}

a:hover {
  color: #00ff00; /* green */
  text-decoration: underline; /* add underline on hover */
}

h1 {
  text-align: center;
}

h1, h2 {
  color: #F8E36C;
}

p {
  color: white;
text-align: justify;
}

li {
  color: white;
  text-align: left;
}

.table-wrapper {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  text-align: center;
  position: initial;
}

table {
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  width: 80%;
}

.navigation-table {
  background-color: transparent;
}

.rounded-corners {
  border-radius: 25px;
}

td {
  padding: 20px;
  box-shadow: 0 0 10px 5px #AE1951;
  margin-bottom: 20px;
}
}

input[type="submit"]:hover {
  background-color: #F5F5F5;
  animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

hr.glow {
  border: none;
  height: 5px;
  background: linear-gradient(to right, #ffc1a6, #87CEFA, #ffa782);
  animation: glow 2s ease-in-out infinite;
  text-align: left;
  width: 75%;
}