/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
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;
}


/* Utilities */
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}


/* Our stuff */

/* @link https://utopia.fyi/type/calculator?c=320,18,1.2,1240,20,1.25,8,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */

:root {
  --step--2: clamp(0.7813rem, 0.7747rem + 0.0326vw, 0.8rem);
  --step--1: clamp(0.9375rem, 0.9158rem + 0.1087vw, 1rem);
  --step-0: clamp(1.125rem, 1.0815rem + 0.2174vw, 1.25rem);
  --step-1: clamp(1.35rem, 1.2761rem + 0.3696vw, 1.5625rem);
  --step-2: clamp(1.62rem, 1.5041rem + 0.5793vw, 1.9531rem);
  --step-3: clamp(1.9438rem, 1.7707rem + 0.8652vw, 2.4413rem);
  --step-4: clamp(2.3325rem, 2.0823rem + 1.2511vw, 3.0519rem);
  --step-5: clamp(2.7994rem, 2.4461rem + 1.7663vw, 3.815rem);
  --step-6: clamp(3.3594rem, 2.8694rem + 2.45vw, 4.7681rem);
  --step-7: clamp(4.0313rem, 3.3602rem + 3.3554vw, 5.9606rem);
  --step-8: clamp(4.8375rem, 3.9286rem + 4.5446vw, 7.4506rem);
}

* {
  /* user-select: none; */
}

html, body {
  height: 100vh;
  overflow: hidden;
}

body {
  background: #fff796;
  font-family: 'ff-enzo-web', 'Helvetica Neue', Helvetica, Arial, sans-serif;;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  animation: fade-in 3s ease-in-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bg-video video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.vid-button {
  width: 100%;
  height: 100%;
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  top: 0;
  left: 0;
  pointer-events: auto;
}

.main {
  width: 100%;
  height: 100%;
  display: flex;
  gap: var(--step-3);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--step-2);
  padding-bottom: 10em;
  pointer-events: none;
  z-index: 10;
  position: relative;
}

.main-heading {
  font-size: var(--step-7);
  line-height: 1.2;
  font-weight: 300;
}

.main-heading strong {
  font-weight: 700;
}

.logo {
  margin-top: var(--step-7);
  margin-bottom: var(--step-6);
  filter: drop-shadow(0px 0px 3px #fff796);
  height: var(--step-8);
}

.heart-wrap {
  position: relative;
}

.heart {
  filter: drop-shadow(0px 0px 3px #fff796);
  width: var(--step-8);
}

.tagline {
  font-size: var(--step-5);
  font-style: italic;
  margin-top: var(--step-6);
  margin-bottom: auto;
}