
#body {
  font-family: sans-serif;
  background: rgb(20,20,20);
  margin: 0;
  height:100vh;
  width:100vw;
  overflow:hidden;
  position: relative;
}

#main{
  position: relative;
  height: 95%;
  box-sizing: border-box;
  display: none;
  width: 100%;
  overflow-y: hidden;

}

img {
  display: none;
  width: 20vmin;
  height: auto;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: 1s ease-in-out;
  animation: dip 0.5s ease-in-out;
}

@keyframes dip{
  from {
    opacity: 0;
  }
  to{
    opacity:1;
  }
}
img[data-status="inactive"] {
  display: none;
  animation: mmm 0.5s ease-out;
}

@keyframes mmm {
  from{
    opacity: 1;
  }
  
  to{
    opacity: 0;
  }
}
img[data-status="active"] {
  display: block;
  transition: 1s ease-in-out;
}



#link{
  cursor:pointer;
}
.footer{
  margin:0;
  padding:0;
  position:fixed;
  left:0%;
  bottom: 0%;
  color: black;
  width: 100%;
  height:5%;
  background-color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}
.footer p{
  font-size: 10px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight:500
}
.footer-socials{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width:20vw;
  padding: 0px 20px;
  
}
.footer-socials a{
  color: black;
  font-size: 0.6rem;
}
.footer-socials a:hover{
  color: rgb(69, 78, 173);
}
.socials{
  text-decoration:none;
  font-weight: lighter;
  font-size: 5px;
}

#end{
  all:unset;
  position: fixed;
  right:5%;
  top:5%;
  background: rgba(20,20,20,0.5);
  padding:5px 9px;
  border-radius: 500px;
  color: white;
  transform: scale(1.5);
  z-index: 1000;
  transition: 0.5s cubic-bezier(.17,.67,.83,.67);
  display: none;
}

#title-container{
  margin: 0 auto;
  text-align: center;
}
#next{
  position:absolute;
  right:5%;
}
#previous{
  position:absolute;
  left:5%;
}
.next-previous{
  all:unset;
  position: absolute;
  top: 50%;
  color: black;
  background:white;
  display: none;
  cursor: none;
  width: fit-content;
  border: 1px solid black;
  padding: 1px 5px
}

#end:hover{
  cursor: pointer;
  background: white;
  color: black;
}


#detail-container{
  display: none;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  width:100%;
  height:fit-content;
  top:0%;
  left:0%;
  overflow-y: hidden;
}

#detail{
  height: 95vh;
  width: 65%;
  background-color: rgb(250,250,250);
  box-sizing: border-box;
  padding: 2% 5% 5% 5%;
  margin: 0 auto;
  z-index: -100;
  flex-direction: column;
  display: flex;
  overflow-y: auto;
  scrollbar-width: 30vw;
  scrollbar-color:  rgb(69, 78, 173) red;
}


#description{
  all:unset;
  cursor: none;
  align-self: center;
  width:50%;
  height: auto;
  display: block;
  filter:unset;


}

#mouse{
  width:100px;
  height:100px;
  background: white;
  opacity:0.8;
  cursor: none;
  border-radius: 100%;
  display: none;
  mix-blend-mode: difference;
  filter: saturate(0);
  transform:translate(-50%,-50%);
}
#mobile{
  position:absolute;
  top:20%;
  left:50%;
  color:white;
  font-family: monospace;
  transform:translate(-50%,-50%);
  z-index: 10000;
  font-size: 0.8rem;
  display: none;
  text-align: center;
}

#loading{
  position: absolute;
  top: 50%;
  left:50%;
  display: flex;
  flex-direction: row;
  gap: 5px;
  transition: 0.5s ease-in-out;
  transform: translate(-50%,-50%);
}
#direction{
  position: absolute;
  top: 50%;
  left:50%;
  display: none;
  flex-direction: row;
  gap: 5px;
  color:white;
  font-family: monospace;
  font-weight: 200;
  font-size: 12px;
  transform: translate(-50%,-50%);
  transition: 0.5s ease-in-out;

}
#detail{
  
}

#detail-text{
  font-weight: unset;
}
.load{
  width: 30px;
  height:5px;
  border-radius: 20%;
  background: white;
}

#load1{
  animation: move1 1s infinite;
}

#load2{
  animation: move2 1s infinite;
}

#load3{
  animation: move3 1s infinite;
}
@keyframes move1 {
  0%{
    opacity:0.2
  }
  50%{
    opacity:1
  }
  100%{
    opacity: 0.2
  }
  
}

@keyframes move2 {
  0%{
    opacity:1
  }
  50%{
    opacity:0.2
  }
  100%{
    opacity: 1
  }
  
}