* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(50% 50% at 50% 50%, #CCA6CD 0%, rgba(204, 166, 205, 0) 100%), #EEE;
  color: #333;
  line-height: 1.6;
  text-align: center;
}
.hero-banner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 0px;
}
.hero-banner img {
  width: 880px;
  height: 480px;
  transform: rotate(0deg);
  opacity: 1;
  display: block;
}
.invitation-card {
  position: relative;
  z-index: 2;
  width: 620px;
  height: 538px;
  margin: -50px auto 40px auto;
  background: #fff;
  padding: 50px 30px 50px 30px;
  border-radius: 40px;
  border: 0.5px solid #5E2567;
  opacity: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #5E2567;
  text-align: left;
}
.invitation-card p {
  margin-bottom: 15px;
}
.invitation-card a {
  color: #5E2567;
  text-decoration: underline;
}
.footer {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 20px;
}
.footer-logo {
  width: 254px;
  height: 76px;
  opacity: 1;
}
@media (max-width: 768px) {
  .invitation-card {
    padding: 40px;
    font-size: 14px;
  }
  .hero-banner img {
    max-width: 100%;
  }
}
 
@media (max-width: 480px) {
  .invitation-card {
    padding: 30px;
    font-size: 13px;
  }
  .footer-logo {
    max-width: 200px;
  }
}
