body, html {
  margin: 0;
  padding: 0;
  height: 100%; /* Ensure full viewport height */
  font-family: Helvetica, sans-serif;
}
body{
  padding-bottom: 5%;
}

.hero {
  width: 100%;
  height: 90svh;
  background-image: linear-gradient( rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3) ), url('bg.jpg');
  background-size: cover;
  background-position: right;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-content {
  font-size: 2em;
  color: white;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}
.hero-content h1 {
  font-size: 2.4em;
  font-family: "Corinthia", sans-serif;
  font-style: normal;
  margin: 1rem;
}
.hero-content p {
  margin: 1rem;
}
.rsvp-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgba(153, 192, 207);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  transition: background-color 0.3s ease;
}
.rsvp-button:hover {
  background-color: rgba(100, 139, 153);
}

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.content {
  padding: 10px;
/*  background-color: #f0f0f0;*/
}
