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

body {
  font-family: "Segoe UI", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

.halloween-banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 300px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.halloween-banner .banner-content {
  padding: 30px;
  border-radius: 12px;
}
.halloween-banner .banner-content .tagline {
  color: orange;
  font-size: 28px;
  margin-bottom: 12px;
  font-family: "Brush Script MT", cursive;
}
.halloween-banner .banner-content h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}
.halloween-banner .banner-content p {
  font-size: 20px;
  margin-bottom: 25px;
}
.halloween-banner .banner-content button {
  padding: 12px 30px;
  background: rgb(255, 120, 0);
  color: black;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.halloween-banner .banner-content button:hover {
  background: #ffae42;
}/*# sourceMappingURL=halloween-sale.css.map */