@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;800&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  user-select: none;
}

body {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: rgb(39, 39, 39);
}

.video {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.2;
}

.content {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 1) 30%
  );
  /* background: rgba(0, 0, 0, 0.5); */
}

.short {
  position: absolute;
  top: 0.5rem;
  right: 0;
  font-size: 0.8rem;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 80px;
  color: white;
  text-transform: uppercase;
  text-align: center;
  z-index: 15;

  --rotationX: 0;
  --rotationY: 0;
}

.container::after {
  content: "";
  position: absolute;
  transform: translateX(var(--rotationX)) translateY(var(--rotationY));
}

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

.links a {
  color: rgb(161, 161, 161);
  text-decoration: none;
  margin-top: 5px;
}

.links a:hover {
  color: rgb(197, 197, 197);
  transition: ease-in 0.2s;
}

video {
  object-fit: contain;
  overflow-clip-margin: content-box;
  overflow: clip;
}

@media screen and (max-width: 100px) {
}
