body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f0f0f0;
}

.banner-container {
  height: 250px;
  width: 669px;
}
@media (max-width: 767px) {
  .banner-container {
    height: 250px;
    width: 500px;
  }
}
@media (max-width: 500px) {
  .banner-container {
    height: 350px;
    width: 300px;
  }
}
.banner-container .banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border-radius: 24px;
  color: #000;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.banner-container .banner h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 10px;
  font-family: "Brush Script MT", cursive;
}
.banner-container .banner p {
  font-size: 20px;
  margin: 0 0 30px;
}
.banner-container .banner button {
  padding: 12px 24px;
  font-size: 18px;
  background: #065f55;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-top: 50px;
}
.banner-container .banner button:hover {
  background: #054b44;
}/*# sourceMappingURL=simple-banner.css.map */