body {
  background-color: #262626;
  font-family: 'Amatic SC', cursive;
  text-align: center;
  color: white;
}

audio {
  display: none;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #ff571a;
  font-size: 27px;
}

li {
  float: left;
}

li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 9px 11px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: #262626;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  font-weight: bold;
  padding: 9px 11px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #f1f1f1
}

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

#astrobits {
  font-size: 30px;
  padding-right: 20px;
  color: black;
  font-weight: bold;
}

#astrobits:hover {
  color: white;
}

header {
  padding-top: 200px;
}

@keyframes h1 {
  from {
    color: transparent;
  }
  to {
    color: white;
  }
}

h1 {
  font-size: 50px;
  animation-name: h1;
  animation-duration: 6s;
}

@keyframes h2 {
  from {
    color: transparent;
  }
  to {
    color: white;
  }
}

h2 {
  font-size: 40px;
  padding-top: 0px;
  animation-name: h2;
  animation-duration: 25s;
}

@keyframes button {
  from {
    border-color: transparent;
  }
  to {
    border-color: #ff4400;
  }
  from {
    color: transparent;
  }
  to {
    color: white;
  }
}

button {
  font-size: 35px;
  height: 70px;
  width: 110px;
  font-family: 'Amatic SC', cursive;
  text-align: center;
  color: white;
  background-color: transparent;
  border: 3px solid #ff4400;
  animation-name: button;
  animation-duration: 25s;
}
