html,
body {
  height: 100%;
}

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

* {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-line: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

iframe {
  border: 0;
}

details summary::-webkit-details-marker {
  display: none;
}

@font-face {
  font-family: 'Oxygen Mono';

  font-style: normal;

  font-weight: 400;

  font-display: swap;

  src: url(https://fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7hjYx-4.woff2) format('woff2');

  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --beige11: 26deg;
  --beige12: 30.9%;
  --beige13: 84.1%;
  --pink11: 11deg;
  --pink12: 55.8%;
  --pink13: 69.8%;
  --navy11: 212deg;
  --navy12: 100%;
  --navy13: 12.0%;
  --sage11: 99deg;
  --sage12: 17.4%;
  --sage13: 60.6%;
  --color-beige1: var(--beige11) var(--beige12) var(--beige13);
  /* #E3D5CA */
  --color-beige1L: var(--beige11) var(--beige12) calc(var(--beige13) + 10%);
  --color-beige1D: var(--beige11) var(--beige12) calc(var(--beige13) - 10%);
  --color-pink1: var(--pink11) var(--pink12) var(--pink13);
  /* #DD9787 */
  --color-pink1L: var(--pink11) var(--pink12) calc(var(--pink13) + 10%);
  --color-pink1D: var(--pink11) var(--pink12) calc(var(--pink13) - 10%);
  --color-pink1DD: var(--pink11) var(--pink12) calc(var(--pink13) - 18%);
  --color-navy1: var(--navy11) var(--navy12) var(--navy13);
  /* #001D3D */
  --color-navy1L: var(--navy11) var(--navy12) calc(var(--navy13) + 10%);
  --color-navy1D: var(--navy11) var(--navy12) calc(var(--navy13) - 10%);
  --color-sage1: var(--sage11) var(--sage12) var(--sage13);
  /* #95AC89 */
  --color-sage1L: var(--sage11) var(--sage12) calc(var(--sage13) + 10%);
  --color-sage1D: var(--sage11) var(--sage12) calc(var(--sage13) - 10%);
  /* ... */
}

.pointer-events-none {
  pointer-events: none;
}

.absolute {
  position: absolute;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.m-0 {
  margin: 0px;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-auto {
  margin-top: auto;
}

.flex {
  display: flex;
}

.h-\[10vw\] {
  height: 10vw;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.max-h-\[100px\] {
  max-height: 100px;
}

.min-h-full {
  min-height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.w-\[10vw\] {
  width: 10vw;
}

.w-\[15vw\] {
  width: 15vw;
}

.w-\[35vw\] {
  width: 35vw;
}

.w-\[5vw\] {
  width: 5vw;
}

.w-\[80vw\] {
  width: 80vw;
}

.w-\[95vw\] {
  width: 95vw;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.min-w-0 {
  min-width: 0px;
}

.max-w-\[100px\] {
  max-width: 100px;
}

.max-w-\[1200px\] {
  max-width: 1200px;
}

.max-w-\[420px\] {
  max-width: 420px;
}

.max-w-\[50vh\] {
  max-width: 50vh;
}

.flex-grow {
  flex-grow: 1;
}

.basis-full {
  flex-basis: 100%;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

.overflow-auto {
  overflow: auto;
}

.overflow-clip {
  overflow: clip;
}

.bg-beige1 {
  background-color: hsl(var(--color-beige1));
}

.bg-beige1D {
  background-color: hsl(var(--color-beige1D));
}

.bg-beige1L {
  background-color: hsl(var(--color-beige1L));
}

.bg-navy1 {
  background-color: hsl(var(--color-navy1));
}

.bg-navy1D {
  background-color: hsl(var(--color-navy1D));
}

.bg-navy1L {
  background-color: hsl(var(--color-navy1L));
}

.bg-pink1 {
  background-color: hsl(var(--color-pink1));
}

.bg-pink1D {
  background-color: hsl(var(--color-pink1D));
}

.bg-pink1L {
  background-color: hsl(var(--color-pink1L));
}

.bg-sage1 {
  background-color: hsl(var(--color-sage1));
}

.bg-sage1D {
  background-color: hsl(var(--color-sage1D));
}

.bg-sage1L {
  background-color: hsl(var(--color-sage1L));
}

.bg-stone-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 244 / var(--tw-bg-opacity));
}

.bg-stone-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(231 229 228 / var(--tw-bg-opacity));
}

.bg-stone-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(214 211 209 / var(--tw-bg-opacity));
}

.bg-stone-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(168 162 158 / var(--tw-bg-opacity));
}

.bg-stone-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 249 / var(--tw-bg-opacity));
}

.bg-stone-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(120 113 108 / var(--tw-bg-opacity));
}

.bg-stone-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(87 83 78 / var(--tw-bg-opacity));
}

.bg-stone-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(68 64 60 / var(--tw-bg-opacity));
}

.bg-stone-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(41 37 36 / var(--tw-bg-opacity));
}

.bg-stone-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(28 25 23 / var(--tw-bg-opacity));
}

.bg-stone-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(12 10 9 / var(--tw-bg-opacity));
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pt-\[18px\] {
  padding-top: 18px;
}

.pt-\[24px\] {
  padding-top: 24px;
}

.pt-\[32px\] {
  padding-top: 32px;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.font-fancy1 {
  font-family: Big Caslon, big-caslon-fb, ui-serif;
}

.font-fancy2 {
  font-family: big-caslon-fb, ui-serif;
}

.font-sans {
  font-family: Helvetica Neue, Roboto, ui-sans-serif, system-ui;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.font-bold {
  font-weight: 700;
}

.text-pink1D {
  color: hsl(var(--color-pink1D));
}

.text-pink1DD {
  color: hsl(var(--color-pink1DD));
}

.text-stone-700 {
  --tw-text-opacity: 1;
  color: rgb(68 64 60 / var(--tw-text-opacity));
}

.text-stone-950 {
  --tw-text-opacity: 1;
  color: rgb(12 10 9 / var(--tw-text-opacity));
}

.underline {
  text-decoration-line: underline;
}

body input {
  border-radius: 0.25rem;
  border-width: 2px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(120 113 108 / var(--tw-border-opacity));
  background-color: inherit;
  font-family: Oxygen Mono, ui-monospace;
  font-weight: 800;
  text-transform: capitalize;
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity));
  caret-color: #be185d;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

body input:focus-visible {
  --tw-border-opacity: 1;
  border-color: rgb(219 39 119 / var(--tw-border-opacity));
}

body input {
  opacity: 1;
}

body input::-moz-placeholder {
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity));
  opacity: 1;
}

body input::placeholder {
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity));
  opacity: 1;
}

.button1 {
  border-radius: 0.25rem;
  border-width: 2px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(120 113 108 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(214 211 209 / var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(12 10 9 / var(--tw-text-opacity));
  --tw-drop-shadow: drop-shadow(0 0 #0000);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.button1:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(231 229 228 / var(--tw-bg-opacity));
}

.buttong {
  background-color: hsl(var(--color-sage1));
}

.buttong:hover {
  background-color: hsl(var(--color-sage1L));
}

.infotext {
  font-size: 1.25rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(68 64 60 / var(--tw-text-opacity));
}

@media (min-width: 485px) {
  .infotext {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 640px) {
  .infotext {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media (min-width: 485px) {
  @media(max-height:900px) {
    .infotext {
      font-size: 1.5rem;
      line-height: 2rem;
    }
  }
}

.infotext2 {
  color: hsl(var(--color-pink1D));
}

#rsvpify-wrapper {
  min-height: 100% !important;
  width: 100%;
  max-width: 500px;
  background-color: hsl(var(--color-beige1)) !important;
}

.placeholder\:text-red-800::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity));
}

.placeholder\:text-red-800::placeholder {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity));
}

@media (min-width: 485px) {
  .xs\:flex-row {
    flex-direction: row;
  }

  .xs\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .xs\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .xs\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 640px) {
  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1200px) {
  .pgw\:left-\[calc\(\(100vw-1200px\)\/2\)\] {
    left: calc((100vw - 1200px) / 2);
  }
}

.\[\&\>div\]\:z-10>div {
  z-index: 10;
}

@media(max-height:600px) {
  .\[\@media\(max-height\:600px\)\]\:max-w-\[25vw\] {
    max-width: 25vw;
  }
}

@media (min-width: 485px) {
  @media(max-height:900px) {
    .xs\:\[\@media\(max-height\:900px\)\]\:text-2xl {
      font-size: 1.5rem;
      line-height: 2rem;
    }

    .xs\:\[\@media\(max-height\:900px\)\]\:text-3xl {
      font-size: 1.875rem;
      line-height: 2.25rem;
    }

    .xs\:\[\@media\(max-height\:900px\)\]\:text-4xl {
      font-size: 2.25rem;
      line-height: 2.5rem;
    }
  }
}

@media(max-width:700px) {
  @media(max-height:450px) {
    .\[\@media\(max-width\:700px\)\]\:\[\@media\(max-height\:450px\)\]\:hidden {
      display: none;
    }
  }
}

@media(max-width:980px) {
  .\[\@media\(max-width\:980px\)\]\:hidden {
    display: none;
  }
}