.banner {
  width: 100%;
  height: 75vh;
  position: relative;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tablets */
@media (max-width: 1024px) {
  .banner {
    height: 60vh;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .banner {
    height: 35vh;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .banner {
    height: 25vh;
  }
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.text-overlay button {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  background: white;
  color: red;
  font-size: 1.2rem;
  cursor: pointer;
}
