/* uwu*/

body {
  background-color: rgb(20, 20, 20);
  color: black;
  font-family: Verdana;
  margin: 0;
  padding: 0;
  font-family: "Pixelify Sans", sans-serif;
  overflow-x: hidden;
}


iframe {
  height:30vw ;
  width: 55vw;
  }

.navbar {
  position: fixed;
  top: 0px;
  left: 0px;


  
  display: flex;
  flex-direction: row;
  gap: 10px;

  background: rgba(255, 255, 255, 0.2); /* semi-transparent white */
  backdrop-filter: blur(6px);          /* optional: glassy look */
  -webkit-backdrop-filter: blur(6px);  /* Safari support */

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

  z-index: 1000;
}


/*CHATGPT HELPED ME WITH THE GRADIENT SO BLAME IT */

.overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height:200px ;
  
  /* Pixelated blocky gradient */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(20,20,20,0.1) 10%,
    rgba(20,20,20,0.2) 10%,
    rgba(20,20,20,0.3) 30%,
    rgba(20,20,20,0.4) 30%,
    rgba(20,20,20,0.5) 50%,
    rgba(20,20,20,0.6) 50%,
    rgba(20,20,20,0.7) 70%,
    rgba(20,20,20,0.8) 70%,
    rgba(20,20,20,0.9) 100%,
    rgba(20,20,20,1) 100%
  );
  
  image-rendering: pixelated; /* Ensures blocky rendering */
  pointer-events: none;
}

.up20 {
    transform: translate(0px, -200px);
  }

.navbar a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  padding: 6px 8px;
  transition: background 0.2s ease, transform 0.1s ease;
}

.navbar a:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateX(2px);
}

.pixelify-sans-<uniquifier> {
  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.titlestuff {
  position: static;
  margin:auto;
  padding-top: 15vh;
  padding-bottom: 15vh;
  overflow-y: auto;
  scroll-behavior: smooth;
  }

.titlestuff img {
  width: 30vw;
  margin-left: auto;
  margin-right: auto;
  display: block;
  min-width: 50vh;
  /* Bounce animation */
  animation: bounce 2s 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px); /* how high it bounces */
  }
  60% {
    transform: translateY(-15px);
}
}

@keyframes fade-in {
  0%{
    transform: translateY(15px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
}
}

.titlestuff button {
  margin-top:5vh;
  margin-left: auto;
  margin-right: auto;
  display:block;
  background-color: transparent;
  border-radius: 10px;
  font-family: "Pixelify Sans", sans-serif;
  transition: background-color 0.2s;
  }

.titlestuff button:hover {
  background-color: hsla(256, 25%, 47%, 0.527);
  }

.bannerbg {
  position: fixed;
  z-index:-1;
  top: 0;
  min-width: 100%;
  min-height:65vh;
  left: 50%;
  transform: translateX(-50%);
  }
  
#main {
  border: 3px solid rgb(20, 20, 20);
  background-color: rgb(20, 20, 20);
  width: 100%;
  height: 100%;
  }
#introduction {
  background-color: rgb(30, 30, 30);
  border: 3px dashed white;
  margin-top: 2vw;
  margin-left: 10vw;
  margin-right: 10vw;
  padding: 60px;
  
  }
  

li, h3, h2, h1, ul {
  opacity: 0;
  color: white;
  animation: fade-in 1s ease forwards;
  }
  
#downloads {
  text-align: center;
  border: 3px dashed white;
  background-color: rgb(30, 30, 30);
  margin-top: 2vw;
  margin-left: 10vw;
  margin-right: 10vw;
  
  }  

#downloads img{
  padding-left: 55px;
  padding-right: 55px;
  width: 60px;
  height: 60px;
  transition: transform 0.1s ease;
  }

#downloads img:hover{
  transform: scale(110%); 
  }





#Gallery {
  text-align: center;
  border: 3px dashed white;
  background-color: rgb(30, 30, 30);
  margin-top: 2vw;
  margin-left: 10vw;
  margin-right: 10vw;
}
#images {

  }  

#Gallery img.expanded {
  width: 80%;
  cursor: zoom-out;
  z-index: 10;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#Gallery img {
  width: 800px;
  transition: transform 0.1s ease;
  cursor: zoom-in;
  }

#images img{
    display: none;
  }
#images.show img {
  display: inline;
}

#Gallery.stayvisible img {
  display: inline;
}

#gallerytop h1, button {
  display:inline-block;
  }

#gallerytop button {
  background-color: transparent;
  border: 0px;
  position: relative;
  left: 20vw;
  transition: transform 0.1s ease;
  }

#gallerytop button:hover {
  cursor: pointer;
  transform: scale(120%);
  }
#gallerytop button.active {
  transform: rotate(45deg);
  }

#Links {
  text-align: center;
  border: 3px dashed white;
  background-color: rgb(30, 30, 30);
  margin-top: 2vw;
  margin-left: 10vw;
  margin-right: 10vw;
  
  }  

#Links img{
  padding-left: 55px;
  padding-right: 55px;
  width: 60px;
  height: 60px;
  transition: transform 0.1s ease;
  }

#Links img:hover{
  transform: scale(110%); 
  }

#footer {
  text-align: center;
  margin: auto;
  }

  
  
  
  