body {
  height: 100vh;
  width: 100vw;
  background-color: black;
  margin: 0rem;
  overflow: hidden;
}
  
#image-track {
  display: flex;
  gap: 4vmin;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(0%, -50%); 
  user-select: none;
}
  
#image-track > .image {
  width: 40vmin;
  height: 56vmin;
  object-fit: cover;
  object-position: 100% center;
}

#focklan {
  font-family: 'Arial', cursive;
  color: white;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#bitchboy {
  position: absolute;
  top: 11%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.12);
}

#fucklan {
  font-family: 'Arial', cursive;
  color: white;
  position: absolute;
  top: 7.5%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#fuckerlan {
  font-family: 'Arial', cursive;
  color: white;
  position: absolute;
  top: 9%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#bitchlan {
  font-family: 'Arial', cursive;
  color: white;
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  cursor: pointer;
}

#focklan, #bitchlan, #fucklan, #fuckerlan, #bitchboy {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}