/* Homepage content styles */

#heroSection {
  background-image: var(--hero-backdrop-url);
  background-repeat: repeat;
  background-size: 175px 175px;
  background-position: center;
  width: 100%;
  height: 85vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#heroContent {
  font-family: "Shippori Mincho B1", serif;
  color: var(--text-color);

  /* Responsive design */
  margin-left: auto;
  margin-right: auto;
  max-width: 70rem;
}

#heroContent h1 {
  font-size: 2.5em;
  font-weight: bold;
  padding: 15px;
}

#startLearning {
  display: inline-block;
  font-weight: bold;
  font-size: 1.2em;
  text-decoration: none;
  color: white;
  background-color: var(--orange);
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
  margin-top: 10px;
  margin-left: 15px;
  margin-right: 15px;
}

#startLearning:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  #heroContent h1 {
    font-size: 4em;
  }

  #startLearning {
    font-size: 1.7em;
    padding: 12px;
  }
}
