    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
		
    }

    html {
      height: 100vh;
		background: rgba( 0, 0, 0, 1)
    }

    body {
      min-height: 100%;
      font-family: 'JetBrains Mono', monospaced;
    }

    dialog {
      position: static;
      padding: 20px 60px 20px 60px;
		background: rgba( 0, 0, 0, 0);
			border: 0px;
		
    }

    h1 {
      font-size: 30px;
      font-weight: 500;
      line-height: 0.85;
    }

    .parent {
      position: relative;
    }

    .child {
      position: absolute;
      margin-inline: auto;
      inset-inline: 0;
      inset-block-start: 50%;
      transform: translateY(-50%);
    }
/* Menubar >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}
.menu__btn {
  position: fixed;
  top: 30px;
  left: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #616161;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -14px;
}
.menu__btn > span::after {
  content: '';
  top: 14px;
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: Black;
  transition-duration: .25s;
}
.menu__item {
  display: block;
  padding: 12px 24px;
  color: #FFF;
  font-family: 'JetBrains Mono', monospaced;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
}
.menu__item:hover {
  background-color: ;
}
* {box-sizing:border-box}




/* Slideshow >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* Slideshow container */
.slideshow-container {
  max-width: 600px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
	margin-left: -50px;
	margin-right: -50px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 24px;
  padding: 0px 12px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}