*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background-color: #fbfbf3;
  color: #5c543f;
  font-family: Georgia, "Times New Roman", serif;
}

.save-the-date {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
}

.background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.5rem 1rem;
}

.text-overlay {
  display: block;
  width: min(92vw, 34rem);
  height: auto;
  pointer-events: none;
}

.calendar-cta {
  display: flex;
  justify-content: center;
  width: min(72vw, 22rem);
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .content {
    padding: 2.5rem 2rem;
  }

  .text-overlay {
    width: min(80vw, 40rem);
  }

  .calendar-cta {
    width: min(50vw, 20rem);
    margin-top: 1.5rem;
  }
}
