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: scroll;
  text-align: center;
  position: initial;
}

table {
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  width: 80%;
box-shadow: none;
}

.navigation-table {
  background-color: transparent;
}

.rounded-corners {
  border-radius: 25px;
}

td {
  box-shadow: 0 0 10px 5px #AE1951;
}

input[type="submit"]:hover {
  background-color: #F5F5F5;
  animation: glow 1s ease-in-out infinite alternate;
}

@keyframes animate {
  0% {
  transform:scaleX(0);
  transform-origin: left;
  }
  50%
  {
    transform:scaleX(1);
  transform-origin: left;
  }
  50.1%
  {
    transform:scaleX(1);
  transform-origin: right;
    
  }
  
  100%
  {
    transform:scaleX(0);
  transform-origin: right;
    
  }
  