* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 400;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

*::-webkit-scrollbar {
  display: none;
}

img, video {
  display: block;
  -webkit-user-drag: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

video::-webkit-media-controls {
  display: none !important;
}

#detach-button-host {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

h1 {
  font-weight: 400;
  font-size: 12px;
}

a, a:hover, a:focus, a:visited {
  text-decoration: none;
  color: black;
}

p:not(:first-of-type) {
  margin-top: 10px;
}

.italic {
  font-style: italic;
}

.heading {
  word-spacing: 40px;
  grid-column: span 3;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 10px;
}

section {
  padding: 10px 40px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

.home-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo {
  width: 100%;
  grid-column: 2;
  justify-self: center;
}

.file-grid {
  position: absolute;
  display: grid;
  bottom: 70px;
  left: 40px;
  right: 40px;
  grid-template-columns: repeat(18, 1fr);
}

.file {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100px;
  text-align: center;
  align-items: center;
}

.icon {
  width: 100%;
}

.file:nth-child(1) {
  grid-column: 2;
}

.file:nth-child(2) {
  grid-column: 4;
  transform: translateY(10%);
}

.file:nth-child(3) {
  grid-column: 7;
  grid-row: 2;
  transform: translateY(-40%);
}

.file:nth-child(4) {
  grid-column: 11;
  grid-row: 3;
  transform: translateY(-50%);
}

.legal {
  position: absolute;
  bottom: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  right: 40px;
}

@media (max-width: 768px) {
  body, h1 {
    font-size: 10px;
  }
  section {
    padding: 18px 16px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }
  .file-grid {
    left: 16px;
    right: 16px;
    grid-template-columns: repeat(6, 1fr);
  }
  .logo {
    width: 80%;
    grid-column: span 3;
  }
  .text-container {
    grid-column: span 3;
  }
  .file:nth-child(1) {
    grid-column: 1;
  }
  .file:nth-child(3) {
    grid-column: 1;
    transform: translate(10%, 10%);
  }
  .file:nth-child(4) {
    grid-column: 5;
    grid-row: 2;
    transform: translate(0, 20%);
  }
}/*# sourceMappingURL=main.css.map */