@import url("https://fonts.googleapis.com/css2?family=Krona+One&display=swap");
.image-rapper {
  overflow: hidden;
}
.image-rapper--4_3 {
  position: relative;
}
.image-rapper--4_3:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 75%;
}
.image-rapper--4_3 > * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.image-rapper--4_3 > img {
  width: 100%;
}
.image-rapper--3_2 {
  position: relative;
}
.image-rapper--3_2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 66.6666666667%;
}
.image-rapper--3_2 > * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.image-rapper--3_2 > img {
  width: 100%;
}
.image-rapper--16_9 {
  position: relative;
}
.image-rapper--16_9:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.image-rapper--16_9 > * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.image-rapper--16_9 > img {
  width: 100%;
}

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
.container {
  margin: 0 auto;
  padding: 0 10px 0 35px;
  max-width: 2000px;
}
@media (min-width: 480px) {
  .container {
    padding: 0 80px 0 80px;
  }
}
@media (min-width: 768px) {
  .container {
    padding: 0 180px;
  }
}
.container--center {
  text-align: center;
}
.container--footer {
  padding: 0 10px;
}

html, body {
  font-family: "Krona One";
  color: white;
  font-size: 40px;
  -webkit-hyphens: auto;
  -khtml-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;
  hyphens: auto;
}
@media (min-width: 768px) {
  html, body {
    font-size: 100px;
  }
}

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

html {
  background-color: black;
}

body {
  margin: 0;
}

::selection {
  background: rgba(255, 255, 255, 0.996);
  color: black;
}

::-moz-selection {
  background: rgba(255, 255, 255, 0.996);
  color: black;
}

.bg {
  height: auto;
}

.video__hero {
  opacity: 0;
  height: 100vh;
  position: absolute;
  left: 0;
  z-index: 100;
  top: 0;
  position: fixed;
}

canvas#hero {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
}

canvas#can {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
