* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;  
  font-style: normal;
}




.navbar {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  font-family: "Inter", sans-serif;
}


#menu-toggle {
  display: none;
}


.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 2000; 
  position: relative; 
}

/* Slide-out menu */
.menu {
  list-style: none;
  position: fixed;
  top: 0;
  right: -250px; 
  height: 100vh;
  width: 250px;
  background: rgba(0, 0, 0, 0.95);
  padding: 100px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: right 0.3s ease;
  z-index: 1500; 
}


.menu-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: rgb(0, 0, 0);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.menu li a:hover {
  color: #433843;
}


#menu-toggle:checked ~ .menu {
  right: 0;
}


#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}




SLIDESHOW CODING

.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 20px;
}

.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  padding: 20px;
}


.slideshow img:nth-child(1)  { animation: cut 1s steps(1) forwards; animation-delay: 0s; }
.slideshow img:nth-child(2)  { animation: cut 1s steps(1) forwards; animation-delay: .5s; }
.slideshow img:nth-child(3)  { animation: cut 1s steps(1) forwards; animation-delay: 1s; }
.slideshow img:nth-child(4)  { animation: cut 1s steps(1) forwards; animation-delay: 1.5s; }
.slideshow img:nth-child(5)  { animation: cut 1s steps(1) forwards; animation-delay: 2s; }
.slideshow img:nth-child(6)  { animation: cut 1s steps(1) forwards; animation-delay: 2.5s; }
.slideshow img:nth-child(7)  { animation: cut 1s steps(1) forwards; animation-delay: 3s; }
.slideshow img:nth-child(8)  { animation: cut 1s steps(1) forwards; animation-delay: 3.5s; }
.slideshow img:nth-child(9)  { animation: cut 1s steps(1) forwards; animation-delay: 4s; }


.slideshow img:nth-child(10) {
  animation: showFinal 0s steps(1) forwards;
  animation-delay: 5s;
}



@keyframes cut {
  0%   { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes showFinal {
  from { opacity: 1; }
  to   { opacity: 1; }
}
