.desktop{
  display:block;
}
.mobile{
  display:none;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow:hidden;
  background-color:white;
}

.button{
  position:absolute;
  top:0;
  right:0;

  z-index:1;

  cursor:pointer;
  height: 50px;
    width: 50px;
    background-color: white;
    border-radius: 1px;


}

a{
  color:#fff;
}

.button:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "\2715"; /* use the hex value here... */
    font-size: 40px; 
    color: #000;
    line-height: 50px;
    text-align: center;

    
}

.button:hover:after{
   background-color:black; 
   color:#fff;
}


#load_time {
  width: 100%;
  height: 25px;
  /* background-color: white; */
  /* position: absolute; */
  font-family: 'Helvetica', Arial, sans-serif;
  z-index: 99;
  right: 0;
  top:0;
  color: black;
  grid-row: span 2;
  grid-column: span 1;
  padding:5px;
}


#safari_message{
  display:none;
  
  color:white;
  /* width:200px; */
  /* height:200px; */
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:99;
  background-color: blue;
  mix-blend-mode: multiply;
}

/* #safari_message p{
  padding:10px;
  background-color:black;
} */

.intro{
  display:none;
  position:absolute;
  padding:2%;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index: 10;
  color:#fff;
  background-color: blue;
  mix-blend-mode: multiply;
  font-size: 3vw;
  font-family: 'Helvetica', Arial, sans-serif;
}

.container{
  height:100vh;
  display:grid;
  grid-template-columns: repeat(7, 1fr);
}

.layer{
  background-color:blue;
  background-color:black;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode:exclusion;
}

.audio-player {
  width: 100%;
  height:25px;
}



audio::-webkit-media-controls-volume-slider {
  display: none !important;
}

/* Removes mute-button */
audio::-webkit-media-controls-mute-button {
  display: none;
}




.draggable {
  cursor: move;

}





@media (max-width: 1000px) {
  body{
    overflow: hidden;
  }
  .desktop{
  display:none ;
}
.mobile{
  display:block;
}

.container{
  grid-template-columns: repeat(2, 1fr);
}

.audio-player {
  height:40px;
  zoom:0.5;
}


.button{
  height: 100px;
  width: 100px;
}



.button:after {
    font-size: 50px; 
    line-height: 100px;
}

#load_time {
  font-size:30px;
}

.intro-mobile{
  position:absolute;
  padding:5%;
  /* display:flex;
  justify-content: center;
  bottom:0;
  top:0; */
}

.intro-mobile span{
  font-size: 9vw;
  line-height: 15vw;
   padding:5px;
  background-color: blue;
  color:white;
}

.full-height {
  height: 100vh;
  width: auto;
}

video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}


}