@font-face {
  font-family: "Clash Display";
  src: url("fonts/ClashDisplay-Variable.ttf") format("trueType supports variations"), url("fonts/ClashDisplay-Variable.ttf") format("trueType-variations");
  font-weight: 200 700;
}
/* Global Reset */


/* Base Styles */
* {
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Clash Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1;
  color: white;
  background-color: #000;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
}

.background-video.active {
  opacity: 1;
  z-index: 2;
  transition: none;
}

@media (max-aspect-ratio: 16/9) {
  .background-video {
    height: 100%;
    width: auto;
  }
}

@media (min-aspect-ratio: 16/9) {
  .background-video {
    width: 100%;
    height: auto;
  }
}



body a, html a {
  color: #fff;
  text-decoration: none;
  display: block;
}
body .byline, html .byline {
  font-size: 18px;
  text-transform: uppercase;
  width: 100%;
  max-width: none;
}


/* Content Styling */
.content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 80px 80px 60px 80px;
  background-color: rgba(0, 0, 0, 0.3);
}
.content .footer {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
  align-items: center;
}
.content .footer .col {
  width: 25%;
}

.content .footer .col:not(:last-child) {
  width: 80%;
}

.content .footer .col:last-child {
  text-align: right;
}

h1 {
  font-size: 10vw;
  font-weight: 600;
  margin-bottom: 100px;
}

p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.logo {
  width: 30vw;
  height: auto;  
}

svg path {
  fill: #fff;
}

.signature svg {
  width: 10vw;
  height: auto;
  object-fit: contain;
}


/* Mobile styles for screens up to 945px */
@media (max-width: 945px) {
  .content {
    padding: 20px 20px 10px 20px;
  }

  .logo {
    width: 90vw;
  }

  .content .footer {
    flex-wrap: wrap;
}

.content .footer .col {
  width: 50%;
}

.content .footer .col:not(:last-child) {
  width: 50%;
  margin-bottom: 20px;
}

.signature svg {
  width:100px;
}

body a, html a {
  white-space: nowrap;
}

.content .footer .col:last-child {
  text-align: left;
}

}

@media (max-width: 470px) {
  .content .footer .col:last-child {
    text-align: right;
  }
}

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