@font-face {
  font-family: "ABCDiatype";
  font-weight: 400;
  font-style: normal;
  src: url("./ABCDiatype-Regular.woff2") format("woff2");
}

:root {
  --fontface: "ABCDiatype";
}

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
}
* {
  box-sizing: border-box;
}

body {
  background-color: #000;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.05em;
  font-weight: 400;
  color: #fff;
  text-align: center;
  font-family: var(--fontface), Helvetica, Arial, sans-serif;
  user-select: none;
}

main {
  font-family: var(--fontface), Helvetica, Arial, sans-serif;
}

h1,
h2 {
  font-family: var(--fontface), Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #fff;
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.05em;
}
h2 {
  font-size: 26px;
  line-height: 33px;
  letter-spacing: -0.05em;
}

svg {
  fill: currentColor;
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: #fff;
}
.Redirect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.Redirect__inner,
.Redirect__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.Redirect__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  align-items: center;
  padding: 50px 20px;
}
.Redirect__background {
  opacity: 0.6;
  overflow: hidden;
}
.Redirect__background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Calculate dimensions to ensure video covers full screen like object-fit: cover */
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-width: 177.78vh; /* 16:9 aspect ratio */
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.Redirect__logo {
  width: 100%;
  max-width: 229px;
}
h2 + h1 {
  margin-top: 18px;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 20px;
    line-height: 25px;
  }
  h1 {
    font-size: 80px;
    line-height: 84px;
  }
  h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
