
body, html{
    margin: 0px;
    padding: 0px;
}
body{
    text-align: center;
    display: flex;
    background: url(bg.jpg) top center no-repeat black;
    background-size: cover;
    min-height: 100vh;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    font-family: Roboto;
}

h2{
    color: white;
    font-size: 12px;
    margin-top: -50px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}
.video-container {
  position: fixed; /* Keeps video fixed to the viewport */
  top: -5%;
  left: 0;
  width: 100%;
  height: 105%;
  z-index: -1;
  overflow: hidden; /* Hides any video overflow */
}

video {
  position: absolute; /* Positions video relative to its container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintains aspect ratio and fills the container */
  z-index: -1;  
}
 /*
video{
  position: fixed;
  top: -10vh;
  left: 0px;
  min-width: 100vw;
  min-height: 110vh;
  z-index: -1;
}*/
.buttonsalt{
  position: absolute;
  bottom: 20vw;
  right: 20vw;
}
.textwrap{
  position: relative;
}
.buttonsalt{
  position: absolute;
  bottom: 30vw;
  right: 20vw;
  width: 30vw;
  
}
.buttonsalt img{
  max-width: 5vw;
}
.buttons a, .buttonsalt a{
  background: red;
  padding: 10px 10px;
  text-decoration: none;
  margin: 0px 4px;
  transition: 0.3s;
  color: white;
  font-weight: bold;
  display: inline-block;
  box-shadow: 5px 5px 0px #000000;
  top: 0px;
  right: 0px;
  position: relative;
  border-radius: 10%;
  border: 2px solid black;
}
.buttonsalt a{
  padding: 5px;
  display: inline-block;
}
.buttons a:first-child{
  border-radius: 5px;
}
.buttons a:hover, .buttonsalt a:hover{
  background: red;
  color: black;
  box-shadow: 0px 0px 0px red;
  top: 5px;
  right: -5px;
}
.buttons a img{
    height: 45px;
    margin-right: 0px;
    vertical-align: middle;
}

.logo{
    max-width: 400px;
    margin-top: 50px;
}
img{
    max-width: 100%;
}
h1 {
    font-size: 7vw;
    font-family: Nabla;
    margin-top: 0px;
    margin-bottom: 0px;
}
  
  @font-palette-values --Nabla {
    font-family: Nabla;
    base-palette: 2;
  }
  span {
    -webkit-animation: depth 1s ease-in-out alternate infinite;
            animation: depth 1s ease-in-out alternate infinite;
    position: relative;
    display: inline-block;
    font-variation-settings: "EDPT" 30;
    font-palette: --Nabla;
  }
  span:nth-child(1) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  span:nth-child(2) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  span:nth-child(3) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  span:nth-child(4) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  span:nth-child(5) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  span:nth-child(6) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  span:nth-child(7) {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  span:nth-child(8) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  span:nth-child(9) {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  span:nth-child(10) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  span:nth-child(11) {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  span:nth-child(12) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  
  @-webkit-keyframes depth {
    0% {
      transform: translatex(0) translatey(0);
    }
    100% {
      font-variation-settings: "EDPT" 200;
      transform: translatex(0.15em) translatey(0.1em);
    }
  }
  
  @keyframes depth {
    0% {
      transform: translatex(0) translatey(0);
    }
    100% {
      font-variation-settings: "EDPT" 200;
      transform: translatex(0.15em) translatey(0.1em);
    }
  }

  @media screen and (max-width: 800px) {
    .buttonsalt {
      bottom: 27vw;
      right: 10vw;
      width: 50vw;
    }
    .buttons a img {
      height: 25px;
    }
    .buttons a, .buttonsalt a {
      margin-top: 10px;
    }
    span.spacer {
      width: 100%;
      display: block;
    }
  }