/* Hero Section */
.heroSection {
  height: 90vh;
  width: 100%;
  overflow: hidden;
  /* border: 1px solid red; */
}
.firstHero {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../../../assets/img/resize1.jpg);
  background-size: cover;
  background-repeat: repeat;
  background-position: top;
}
.firstHero h1 {
  color: #fff;
  font-size: 60px;
  text-align: center;
}

/* PPDB Section */
.ppdbSection {
  width: 90%;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  text-align: justify;
  row-gap: 20px;
}
.ppdbSection h2 {
  font-size: 28px;
  color: #222;
}
.ppdbSection a {
  color: aliceblue;
  font-size: 35px;
  width: fit-content;
  margin: 50px;
  padding: 30px;
  /* width: 200px; */
  background: seagreen;
}
.ppdbSection a:hover {
  color: yellow;
}
/* Responsive CSS Code */
@media screen and (max-width: 1024px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 52px;
  }
}

@media screen and (max-width: 900px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 48px;
  }

  /* PPDB Section */
  .ppdbSection h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 650px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 30px;
  }

  /* PPDB Section */
  .ppdbSection h2 {
    font-size: 20px;
  }
  .ppdbSection a {
    margin: 30px;
    padding: 20px;
    font-size: 25px;
  }
}

@media screen and (max-width: 450px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 26px;
  }

  /* PPDB Section */

  .ppdbSection a {
    margin: 10px;
    padding: 15px;
    font-size: 20px;
  }
}
