/*!****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./src/sass/app.scss ***!
  \****************************************************************************************************************************************/
@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

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

html {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

hr {
  border: 0;
}

button,
input,
select,
textarea {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  appearance: none;
  letter-spacing: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

a,
button,
select,
input,
textarea {
  color: inherit;
}

a,
button {
  cursor: pointer;
}

button {
  text-transform: inherit;
}

a {
  text-decoration: none;
}

ol li,
ul li {
  list-style-type: none;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}

[hidden] {
  display: none !important;
}

:root {
  --green: #003f48;
  --orange: #ffbd77;
  --red: #990716;
  --tan: #fef7e8;
}

@font-face {
  font-family: "Block Berthold";
  src: url(../c69a1e6fa81f87002115.otf) format("opentype");
  font-weight: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Georgia";
  src: url(../fdad852e4d92e9181774.ttf) format("ttf");
  font-weight: normal;
  font-stretch: normal;
}
:root {
  --font-default: "Georgia";
  --font-custom: "Block Berthold";
}

html,
body {
  scroll-behavior: smooth;
}
@media (hover: hover) {
  html,
  body {
    overscroll-behavior: none;
  }
}

body {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  color: var(--green);
  font-family: var(--font-default);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  background-color: var(--tan);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (max-width: 64rem) {
  body {
    padding: 0;
  }
}

.cursor {
  --size: 2rem;
  --icon: "";
  position: fixed;
  top: -0.5rem;
  left: -0.5rem;
  z-index: 10;
  color: var(--light);
  font-size: var(--size);
  mix-blend-mode: difference;
  pointer-events: none;
}
.cursor-icon {
  display: block;
}
.cursor-icon::before {
  content: var(--icon);
}
.cursor[data-down] {
  --icon: "";
}
.cursor[data-hover] {
  --icon: "";
}
@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

* {
  cursor: none !important;
}

.container {
  max-width: 84rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

.cms + .cms {
  margin-top: 3rem;
}
.cms :is(p, ul, ol, h1, h2, h3, h4, h5, h6, blockquote, table):not(:first-child) {
  margin-top: 1em;
}
.cms h2 {
  font-family: var(--font-custom);
  font-size: 2rem;
  line-height: 1;
}
.cms h2 + p {
  margin-top: 0.25em !important;
}
.cms img {
  display: block;
  width: 100%;
  height: auto;
}
.cms :is(ul, ol):not([class]) {
  padding-left: 1.25em;
}
.cms :is(ul, ol):not([class]) li:not(:first-child) {
  margin-top: 0.25em;
}
.cms ul:not([class]) li {
  list-style: disc;
}
.cms ul:not([class]) li ul li {
  list-style: circle;
}
.cms ol:not([class]) li {
  list-style: decimal;
}
.cms a:not([class]) {
  text-decoration: underline;
}
.cms blockquote p:first-child::before, .cms blockquote p:last-child::after {
  content: '"';
}
.cms table :is(th, td) {
  padding-block: 0.25rem;
}
.cms table :is(th, td):not(:last-child) {
  padding-right: 1rem;
}

.list {
  border: 1px solid pink;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  overflow: clip;
  --lineSize: 6rem;
  background-image: linear-gradient(to right, var(--tan), var(--tan) calc(var(--lineSize) / 2), var(--green) calc(var(--lineSize) / 2), var(--green));
  background-size: var(--lineSize) 100%;
  background-position: calc(50% - var(--lineSize) / 4);
}
.hero .container {
  position: relative;
  z-index: 5;
}
.hero-title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin-top: 6.5rem;
  color: var(--orange);
  font-family: var(--font-custom);
  font-size: 16vw;
  line-height: 1;
  text-align: center;
}
.hero-date {
  position: relative;
  z-index: 5;
  color: var(--tan);
  font-family: var(--font-custom);
  font-size: 14vw;
}
.hero-circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-inline: 1rem;
}
.hero-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--orange);
  border-radius: 50%;
}
.hero-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  aspect-ratio: 1;
  background-color: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero-circle svg {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  animation: circleRotate 12s linear infinite;
}
.hero-circle svg path {
  fill: transparent;
}
.hero-circle svg textPath {
  fill: var(--tan);
  font-family: var(--font-custom);
  font-size: 12px;
  text-transform: uppercase;
}
.hero-circle svg:last-child {
  animation-delay: -6s;
}
.hero-wave-tan {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  --backgroundMiddle: 20%;
  background-image: linear-gradient(to bottom, transparent, transparent var(--backgroundMiddle), var(--tan) var(--backgroundMiddle), var(--tan));
}
.hero-wave-tan svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.hero-wave-green {
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  --backgroundMiddle: 30%;
  background-image: linear-gradient(to bottom, transparent, transparent var(--backgroundMiddle), var(--green) var(--backgroundMiddle), var(--green));
}
.hero-wave-green svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

@keyframes circleRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes waveTranslate {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
.music {
  position: relative;
  padding: 6rem 1rem 3rem;
  text-align: center;
  overflow: clip;
}
.music::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  z-index: 6;
  width: 200vw;
  height: 4rem;
  background-image: url(../img/border-green.svg);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 50% auto;
  animation: waveTranslate 6s linear infinite;
}
.music-text {
  margin-bottom: 1rem;
}
.music-play {
  padding: 0.5rem 1rem;
  color: var(--tan);
  font-family: var(--font-custom);
  text-transform: uppercase;
  background-color: var(--red);
  border-radius: 2rem;
}
.music-audio {
  display: none;
}

.intro {
  position: relative;
  padding: 3rem 1rem 6rem;
  background-color: var(--orange);
  overflow: clip;
}
.intro::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  z-index: 6;
  width: 200vw;
  height: 4rem;
  background-image: url(../img/border-green.svg);
  background-position: center top;
  background-repeat: repeat-x;
  background-size: 50% auto;
  animation: waveTranslate 6s linear infinite;
}

.form iframe {
  display: block;
  width: 100%;
  height: 90dvh;
}

.end {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 6rem;
  overflow: clip;
}
.end::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  z-index: 6;
  width: 200vw;
  height: 4rem;
  background-image: url(../img/border-green.svg);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 50% auto;
  animation: waveTranslate 6s linear infinite;
}
.end-kiss {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  color: var(--orange);
  font-family: var(--font-custom);
  font-size: 30vw;
  text-transform: uppercase;
  line-height: 0.8;
}
.end-image img {
  display: block;
  width: 100%;
  filter: grayscale(1);
  opacity: 0.64;
}

/*# sourceMappingURL=app.css.map*/