@font-face {
    font-family: "Stanley";
    src: url("_fonts/Stanley-Regular.woff2") format("woff2"),
        url("_fonts/Stanley-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
   --app-height: 100%;
}

html,
body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    height: var(--app-height);
}

body {
  font-family: "Stanley", "Times New Roman", Times, serif;
  font-size: 14px;
  background-color: #FEF1EC;
  color: #5D2946;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.2;
  overflow: hidden;
  -webkit-font-kerning: normal;
 -webkit-font-smoothing: antialiased;
 text-align: center;
}



header {
  margin: auto;
  z-index: 5;
  position: fixed;
  width: 100%;
  top: 2rem;
  left: 50%;
  text-align: center;
  transform: translate(-50%, 0);
}

p {
  margin: 0 auto 2rem;
  width: 80%;
  max-width: 420px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: .5 all ease-out;
  cursor: pointer;
}

a:hover {
  transition: .5 all ease-out;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;

}

h1 {
  line-height: 1;
  margin: auto auto 1em auto;
  position: relative;
  z-index: 3;
  width: 75%;
  max-width: 420px;
}


h1 svg {
  width: 85vw;
  max-width: 800px;
  height: auto;
} 


h2 {
  font-size: inherit;
  margin:  4em auto 0;
}

h3 {
  font-size: 1.5em;
  margin: 2rem auto 1rem;
}

header h2 {
  font-size: inherit;
  margin:  0 auto 2rem;
}

video {
  position: fixed;
  object-fit: cover;
  height: 100vh;
  width: 100vw;
  z-index: -1;
}


.details {
  margin: auto auto 2rem;
  text-align: center;
}

.content {
  max-width: 560px;
  width: 80%;
  margin: 1rem auto 0;
  text-align: center;
}

.details svg {
  max-width: 140px;
}


.hide {
  display: none;
}

.button:not(input), a strong, strong a, b a, a b {
  display: inline-block;
  width: auto;
  margin: auto;
  cursor: pointer;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid;
  border-radius: 3rem;
  opacity: 1;
  transition: .2s all ease-out;
  font-size: .8rem;
  font-weight: normal;
  background-color: #5D2946;
  color: #ffffff;
}

.button:hover, a strong:hover, strong a:hover, b a:hover, a b:hover {
    border-color: #5D2946;
    color: #5D2946;
    background-color: #ffffff;
}

svg {
  fill: currentColor;
}


@media (min-width: 800px) {

  body {
    font-size: 15px;
  }

  .content {
    margin: 0 auto 0;
  }
}
