#hero {
  height: 800px;
  background-image: url(/images/anime-img/backgroung-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#hero-content {
  width: 60%;
  background-color: rgba(51, 47, 47, 0.8);
  box-shadow: 2px 4px 8px rgb(68, 67, 67);
  border-radius: 8px;
  text-align: center;
  padding: 50px 0;
  margin: 0 auto;
  position: relative;
  top: 200px;
}

#hero-content h1 {
  color: white;
  text-transform: uppercase;
  font-size: 3rem;
  font-family: "Raleway", sans-serif;
  margin: 0;
}

#hero-content p {
  color: white;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 32px;
}

#hero-content a {
  text-decoration: none;
  background-color: rgb(255, 251, 0);
  padding: 12px 24px;
  color: black;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 2px 4px 8px rgb(68, 67, 67);
}

#hero-content a:hover {
  background-color: rgb(255, 238, 0);
}

#highlights h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 3rem;
  color: rgb(59, 65, 64);
}

#popular {
  display: flex;
  width: 90%;
  margin: auto;
  margin-bottom: 40px;
  justify-content: center;
}

.popular-anime {
  width: 10rem;
  margin: 0 20px;
}

.popular-anime p {
  text-align: center;
}

.popular-anime img {
  height: 250px;
  width: 100%;
  box-shadow: 2px 4px 8px rgb(68, 67, 67);
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 48rem) {
  #hero {
    background-image: url(/images/anime-img/Madara.jpg);
  }

  #hero-content {
    width: 80%;
    top: 230px;
  }

  #hero-content h1 {
    font-size: 2rem;
  }

  #hero-content p {
    font-size: 1.2rem;
  }

  #hero-content a {
    font-size: 1.2rem;
  }

  #highlights h2 {
    font-size: 2rem;
  }

  #popular {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .popular-anime {
    margin: 0 10px;
  }

  .popular-anime img {
    height: 230px;
    width: 100%;
  }
}

@media (min-width: 100rem) {
  #hero {
    height: 1000px;
  }
}
