*{
  cursor: none;
}

body{
  padding: 0;
  margin: 0;
  color: white;
  background-color: black;
  overflow: hidden;
  scroll-behavior: smooth;

}

main{
  position: relative;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; 
}

main a{
  text-decoration: none;
  cursor: none;
}

.menu{
  position: absolute;
  top: 70px;
  right: 70px;
  z-index: 9;
}

.firstline{
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background-color: white;
  position: relative;
}

.secondline{
  width: 25px;
  height: 3px;
  border-radius: 2px;
  background-color: white;
  margin-top: 10px;
  position: relative;
}


figure{
  position: absolute;
  top: 50px;
  left: 50px;
  font-family: montserrat,sans-serif;
  font-weight: 300;
  font-size: 20px;
  z-index: 9;
}

nav{
  position: fixed;
  width: 100vw;
  height: 100vw;
  background-color: black;
  top: 0;
  left: 0;
  transition: 1s;
  z-index:5;
  height: 100vh;
} 

nav div{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

nav div a{
  color: transparent;
  -webkit-text-stroke: 1px white; /* width and color */
  transition: 0.3s;
  text-decoration: none;
  font-family: montserrat,sans-serif;
  font-size: 50px;
  font-weight: 800;
}

nav div a:hover{
  color: white;
}

.hidden{
  opacity: 0;
  pointer-events: none;
}

.cursor{
  width: 3rem;
  height: 3rem;
  border: 1px solid white;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: .1s linear;
  z-index: 11;
}

.cursor.big{
  width: 6rem;
  height: 6rem;
  background-color: white;
  opacity: 0.5;
}

iframe{
  width: 100vw;
  height: 100vh;
  position: fixed;
  right: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: background-image 0.5s ease-in-out;
  transition: background-image 0.5s ease-in-out;
  cursor: none;
  animation-name: img;
  animation-duration: 60s;
  animation-iteration-count: infinite;
  background-color: black;
  z-index: -1;
  padding: 0;
  margin: 0;
  border: 0;
}

.plays{
  position: fixed;
  height: calc(100vh - 150px);
  top: 0px;
  padding: 150px 100px 0 100px;
  text-align: center;
  width: 400px;
  font-family: montserrat,sans-serif;
  background-color: black;

}

.plays p{
  color: transparent;
  -webkit-text-stroke: 1px white; /* width and color */
  transition: 0.3s;
  text-decoration: none;
  font-family: montserrat,sans-serif;
  font-size: 30px;
  font-weight: 800;
}

.plays p:hover{
  color: white;
}


figure a{
  color: white;
  text-decoration: none;
  cursor: none;
}
.text{
  position: fixed;
  top: calc(100vh - 100px);
  left: 100px;
  color: white;
  width: 400px;
  height: 100px;
  z-index: 2;
  font-family: montserrat,sans-serif;
  font-weight: 300;
  font-style: normal;
}

.playmobile{
  display: none;
  pointer-events: none;
}

@media only screen and (max-width: 800px) {
  body{
    overflow: hidden;
  }

  .playmobile{
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: montserrat,sans-serif;
    font-weight: 300;
    font-style: normal;
  }
}