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

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

.banner {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 300px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  color: black;
  display: flex;
  align-items: center;
  padding: 40px;
  overflow: hidden;
}
.banner .banner-content {
  max-width: 400px;
}
.banner h1 {
  font-weight: bold;
  font-style: normal;
  font-size: 48px;
  line-height: 1.32;
  color: rgb(0, 0, 0);
  margin-bottom: 10px;
}
.banner p {
  font-size: 18px;
  line-height: 1.32;
  color: rgb(0, 0, 0);
  margin-bottom: 25px;
}
.banner button {
  padding: 14px 45px;
  border-radius: 25px;
  border: none;
  margin-top: 35px;
  background: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.banner button:hover {
  background: #eee;
}/*# sourceMappingURL=travel-discount.css.map */