body {
    background-color: #62a4e7;
    font-family: Courier;
}
  
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  max-height: 40%;
  max-width: 80%;
  z-index: 2;
}

#header {
  z-index: 1;
  margin-bottom: 70px;
  padding-top: 50px;
  padding-bottom: 50px;
  color: white;
  width: 95%;
  text-align: center;
  font-weight: 500;
  font-size: 140%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

#text {
  z-index: 2;
  margin-bottom: 40vh;
  font-size: 90%;
  text-align: left;
  color: rgb(233, 233, 233);
  line-height: 1.4;
}

.fade {
  margin: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  opacity: 0;
}

.button {
  background-color: white;
  color: #62a4e7;
  border: none;
  border-radius: 6px;
  font-size: 90%;
  font-family: Courier;
  padding: 5px 10px;
}

.button:hover {
  background-color: #1a63ac;
  color: white;
}

.button2 {
  background-color: white;
  color: #1a63ac;
  border: none;
  border-radius: 6px;
  font-size: 90%;
  font-family: Courier;
  padding: 10px 24px;
}

.button2:hover {
  background-color: #62a4e7;
  color: white;
}

.arrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 10px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}