@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f7f9fa;
}

.bst {
  background: linear-gradient(
      180deg,
      rgba(110, 240, 204, 0.4) 0%,
      rgba(15, 216, 248, 0.8) 100%
    ),
    url(https://images.unsplash.com/photo-1586032788085-d75f745f26e0?q=80&w=2062&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.bst2 {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 70%;
  background-color: rgba(0,0,0,0.5);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 6px 4px 6px rgba(0,0,0,0.3);
  gap: 50px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.hdr {
  font-weight: 900;
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 1px;
}

.ln {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  opacity: 0.85;
}

.lst {
  margin-top: 2rem;
  display: flex;
  gap: 6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lst p {
  cursor: pointer;
  transition: transform 0.5s;
}

.lst p:hover {
  transform: scale(1.5);
}

@media screen and (max-width: 768px) {
  .bst2 {
    width: 90%;
    height: auto;
    gap: 30px;
    padding: 2rem 1rem;
    border-radius: 40px;
  }
  .hdr {
    font-size: 2rem;
  }
  .ln {
    font-size: 1.1rem;
  }
  .lst {
    margin-top: 1rem;
    gap: 2.5rem;
  }
  .lst p:hover {
    transform: scale(1.3);
  }
}

@media screen and (max-width: 480px) {
  .bst {
    height: auto;
    padding: 2rem 0;
  }
  .bst2 {
    width: 95%;
    border-radius: 30px;
    gap: 20px;
    padding: 1.5rem;
  }
  .hdr {
    font-size: 1.5rem;
  }
  .ln {
    font-size: 1rem;
  }
  .lst {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .lst p:hover {
    transform: scale(1.2);
  }
}
