.hero {
  width: 100%;
  height: 250px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(heroImage/learn.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero>h1 {
  font-family: "Salsa", cursive;
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 0.08rem;
  font-weight: 900;
  text-decoration: underline #43dd0f;
}

.hero p {
  font-family: "Merriweather", serif;
  color: #fff;
}

.hero>p>a {
  text-decoration: none;
  color: #fff;
}

.hero>p>a:hover {
  color: greenyellow;
}

.desk {
  margin: 8vh 6vw 8vh 6vw;
  display: flex;
  justify-content: space-between;
}

.desk>img {
  /* width: 50%; */
  width: 100%;
  min-height: 300px;
}

.desk>p {
  font-family: "Merriweather", serif;
  margin-left: 40px;
  font-size: 1.5rem;
}

@media (max-width: 800px) {
  .desk {
    display: flex;
    flex-wrap: wrap;
  }

  .desk>p {
    margin: 0;
    padding: 0;
    margin-top: 50px;
    text-align: justify;
  }
}