/* Defines gradient background and ensures text is centered */
body {
  background: #FFFA8D;
  padding-top: 80px;
  text-align: center;
}

/* Defines main header "Welcome to EduPlay" */
h1 {
  color: #4DA8DA;
  margin-bottom: 0.5em;
  font-size: 6em;
}

/* Formats home page description */
.description {
  font-size: 1.5em;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
  color: #F5F5F5;
  background-color: #4DA8DA;
  border-radius: 15px;
  padding: 15px;
  margin: 40px auto;
  max-width: 37.5em;
  transition: color .5s, transform .5s;
}
.description:hover {
  color: #FFD66B;
  transform: scale(1.03);
}