@font-face {
    font-family: "DINpro-Light";
    src: url("../DINPro-Light.otf");
    font-weight: inherit; 
    font-style:inherit;
  }
  
  @font-face {
    font-family: "DINpro-Regular";
    src: url("../DINPro-Regular.otf");
    font-weight: inherit; 
    font-style:inherit;
  }


  body {
    background-color: #fdfdfd;
    font-family: "DINPro-Light", sans-serif;
    font-size: 1EM;
    color: #111111;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding:0 1em;
  z-index: 6;
  display: flex;
  color: #fdfdfd;
  justify-content: space-between;
}
.left {
  align-self: left;
}
.right {
  align-self: right;
}

.line {
  z-index: 5;
  position: fixed;
  top: .8em;
  left: 1em;
  padding: 0 1em;
  width: calc(100vw - 4em);
  color: #3338;
  border-bottom: 1px;
}

a {
    text-decoration: none;
    color: inherit;
  }

.button {
    position: absolute;
    opacity: 1;
    border: 0.18rem solid #948787;
    border-radius: 0.25rem;
    background-color: rgba(0, 0, 0, 0.2);
    color: #555555;
    /* top: calc(100vh - 4em);
    left: calc(100vw - 8em); */
    text-align: center;
    padding: 0.5rem;
    z-index: 99;
}
    
.button :hover {
    transition: .5s ease-in;
    box-shadow: 0 0 .2em #111111;
    background-color: rgba(0, 0, 0, 0.5);
}

.button span {color: #fdfdfd}

.splash {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #111111;
    z-index: 3;
}

.splash video {
        top: 0;
        left: 0;
        min-height: 100vh;
        width: 100%;
        object-fit: cover;
        opacity: 0.5;
    }

    .mobile {
        display: none;
    }

    @media only screen and (max-width: 600px){
        .desktop {
            display: none;
        }
        .mobile {
            display: block;
        }
        .button {
          top: calc(100vh - 12em);
        }

    }

/* :hover {
    box-shadow: 0 0 0 0;
    background-color: none;
 } */


