 <style>
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  background: url('https://www.gisburneparkestate.co.uk/wp-content/uploads/2023/12/Lucy_Elliot_Wedding-817-1-Copy-scaled.jpg') no-repeat center center/cover;
  color: #fff;
  position: relative;
}

/* Overlay for readability */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Container */
.container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 15px;
}

.description {
  font-size: 1rem;
  margin-bottom: 25px;
}

.countdown {
  font-size: 1.2rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
  font-weight: bold;
}
.countdown span {
  padding: 0 5px;
}

/* Form */
.notify-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.notify-form input {
  padding: 10px;
  border: none;
  border-radius: 3px;
  width: 60%;
}

.notify-form button {
  padding: 10px 20px;
  background-color: #fff;
  color: #333;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.notify-form button:hover {
  background-color: #ddd;
}

/* Footer */
.footer {
  font-size: 0.9rem;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}
</style>