@import url("https://fonts.googleapis.com/css2?family=Bangers&family=Poppins:wght@100;300&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: black;
  position: relative;
  color: whitesmoke;
}

.header {
  text-align: center;
}

.header #logo {
  top: 10;
  z-index: 9999;
  width: 350px;
  max-height: 15vh;
}

.slideshow-container {
  text-align: center;
  float: left;
  margin: auto;
  margin-bottom: 20px;
  width: 70vw;
  /* Fading animation */
}

.slideshow-container .mySlides {
  display: none;
}

.slideshow-container .mySlides .imgSlide {
  border-radius: 10px;
  vertical-align: middle;
  max-height: 70vh;
  max-width: 70vw;
  width: auto;
  height: auto;
  overflow: hidden;
}

.slideshow-container .fade {
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.sidebar-right {
  margin: auto;
  float: left;
  display: block;
  width: 25vw;
  font-family: "Poppins", cursive;
  padding: 40px 10px 0;
  text-align: center;
  font-size: 2vw;
  z-index: 999;
}

.footer marquee {
  padding-top: 3px;
  font-family: "Bangers", cursive;
  font-size: 50px;
  color: #e43b3b;
}

.container {
  color: whitesmoke;
  padding: 30px;
  position: absolute;
  inset: 0;
}

.gallery_container .gallery_pic {
  position: relative;
  float: left;
  padding: 10px;
}

.gallery_container .gallery_pic img {
  width: 100px;
  height: 100px;
}

.gallery_container .gallery_pic .caption {
  position: absolute;
  top: 0;
  background-color: black;
}

.gallery_container .gallery_pic .bin {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 50%;
  background-color: white;
  padding: 5px;
  font-size: 10px;
}

.gallery_container .gallery_pic .tags {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 35px;
  border-radius: 50%;
  background-color: white;
  padding: 5px;
  font-size: 10px;
}
/*# sourceMappingURL=styles.css.map */