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 > a {
  width: 40vmin;
  height: 56vmin;
  object-fit: cover;
  object-position: 100% center;
}

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


body.menu-toggled > .meta-link > span {
  color: rgb(30, 30, 30);
}

#source-link {
  bottom: 60px;
}

#source-link > i {
  color: rgb(94, 106, 210);
}

#yt-link > i {
  color: rgb(239, 83, 80);
}

.meta-link {
  align-items: center;
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  bottom: 10px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;  
  display: inline-flex;
  gap: 5px;
  right:10px;
  padding: 10px 20px;
  position: fixed;
  text-decoration: none;
  transition: background-color 400ms, border-color 400ms;
  z-index: 10000;
  font-size: 0.8rem;
}

.meta-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.meta-link > i, .meta-link > span {
  height: 20px;
  line-height: 20px;
}

.meta-link > span {
  color: white;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}


.describeText {
  text-align: center;
  margin-top: 10px;
  color: white;
  text-decoration: none;
}

a{
  text-decoration: none;
}


html, body {
  margin: 0;
  padding: 0;
  overflow: hidden; 
}


#navbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #131516;
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0; /* Start off-screen */
  z-index: 1001;
  height: 10vh;
  padding-top: 0;
  margin-top: 0;

}


#navbar a {
  color: white; /* White text color */
  text-decoration: none; /* Remove underline from links */
  font-size: 16px; /* Set the font size */
  padding: 10px 15px; /* Vertical and horizontal padding for better clickability */
  height: 100%; /* Make the link fill the navbar vertically */
  display: flex; /* Use flexbox for link containers */
  align-items: center; /* Align text inside the link vertically */
  user-select: none;
}

#navbar a:hover {
  color: #a9a9a9; /* Light gray color on hover */
}

#toggleNavbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1002;
  background: none;
  border: none;
  color: white; /* Set the color based on your theme */
  font-size: 24px; /* Set the size as needed */
  cursor: pointer;
  padding: 10px;
 
}

#slider-container {
  position: fixed;
  top: 15vh; /* Adjust to position right under the navbar */
  left: 50%;
  transform: translateX(-50%);
  width: 60%; /* Make it smaller */
  height: 5px; /* Make it smaller */
  background: #ccc;
  border-radius: 2.5px; /* Adjusted border-radius */
  cursor: pointer;
  z-index: 1000; /* Ensure it is above other elements */
}

#slider {
  position: relative;
  width: 100%;
  height: 100%;
}

#slider-dot {
  position: absolute;
  top: -7.5px; /* Adjusted for smaller height */
  left: 100%; /* Start from the right */
  width: 15px; /* Make it smaller */
  height: 15px; /* Make it smaller */
  background: #333;
  border-radius: 50%;
  cursor: pointer;
  transform: translateX(-50%); /* Center the dot */
}
