body {
  background-color: gold;
  font-family: Impact, Charcoal, sans-serif;
}

h2 {
  font-size:37;
  color: maroon;
  font-weight: normal;
}

#BIO {
    margin-top: -100px;
    padding-top: 100px;
}
#PLAYERS {
    margin-top: -100px;
    padding-top: 100px;
}
#INFO {
    margin-top: -100px;
    padding-top: 100px;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: maroon;
  font-size:37;
  color: white;
  text-align: center;
  animation: shrink 2s forwards;
  animation-delay: 3s;
}

@keyframes shrink {
  from {
    height: 100%;
  }
  to {
    height: 100px;
  }
}

.menu svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  padding-left:10px;
  padding-right:10px;
  transform: translateX(-50%);
  animation-name: slide-left;
  animation-duration: 2s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

@keyframes slide-left {
  from { left: 50%; transform: translateX(-50%); }
  to { left: 0; transform: translateX(0); }
}

.welcome {
  animation-name: logo-text-fadeout;
  animation-duration: 2s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

@keyframes logo-text-fadeout {
  from { opacity: 1; }
  to { opacity:0; }
}

.title-text {
  opacity: 0;
  padding-top: 5px;
  animation-name: title-fadein;
  animation-duration: 1s;
  animation-delay: 4s;
  animation-fill-mode: forwards;
}

@keyframes title-fadein {
  0% { opacity: 0; }
  100% { opacity: 1;}
}

ul {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: none;
}

li {
  display: inline;
}

li a {
  color: white;
  text-align: center;
  padding: 0px 20px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
  color: orange;
}
.content{
  margin-top: 100px;
  padding-left: 10%;
  padding-right: 10%; 
}