@font-face {
  font-family: "EduMaxiRoundMono";
  src: url("../assets/EduMaxiRoundMono-Light.woff2") format("woff2");
}
@font-face {
  font-family: "StyreneB";
  font-weight: normal;
  src: url("../assets/StyreneB-Regular.otf") format("opentype");
}
html, body {
  margin: 0;
  padding: 0;
  font-family: "EduMaxiRoundMono";
  background-color: black;
  color: white;
}

.hero {
  position: relative;
  display: flex;
  height: 100vh;
  align-items: center;
}
.hero h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  text-align: center;
  font-size: 8vw;
  z-index: 10;
  mix-blend-mode: difference;
}
.hero video,
.hero img {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-title h1 {
  font-size: 8vw;
  text-align: center;
}

.row {
  display: flex;
  flex: row nowrap;
  font-family: "StyreneB";
  text-rendering: geometricPrecision;
}
.row .col {
  box-sizing: border-box;
  padding: 2rem;
}
.row .col img {
  display: block;
  width: 200px;
}
.row .col p:first-child {
  margin-top: 0;
}
.row .col a:link,
.row .col a:visited {
  color: white;
}
.row .col-1-2 {
  flex: 0 0 50%;
  padding-bottom: 4rem;
}
.row:last-child {
  margin-bottom: 5rem;
}

@media screen and (max-width: 1024px) {
  .row {
    display: block;
  }
}