/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
html, body{
	width: 100%;
	height: 100%;
}
head {
    font-family: monospace;
}
  img {
    display: block;
    text-align: center;
    margin: 0 auto;
    width: 90%;
  }
body {
  overflow-x: hidden;
  background-color: #292831;
  color: #dedede;
  font-family: monospace;
}
p {
  margin: 2% 3%;
  text-indent: 3%;
}
h5 {
  text-align:center;
  font-size:2vw;
  color:rgba(222,222,222,0.42);
  font-weight:bold;
}
h4 {
  text-align: center;
}
h3 {
  padding: 0;
}
h2 {
  text-align:center;
}
h1 {
  font-size: 2.5em;
  text-align: center;
  }

/* unvisited link */
a:link {
  color: #dedede;
}

/* visited link */
a:visited {
  color: #dedede;
}

/* mouse over link */
a:hover {
  color: #bce6b5;
  
}

/* selected link */
a:active {
  color: #5aa64e;
}
.row {
  display: flex;
}

.column {
  flex: 33.33%;
  padding: 5px;
}
/* key stuff */
.your-centered-div {
    position: flex;
    margin: center;
}
.title-box {
  background: rgba(36,35,35,0.69);
  width: fit-content;
  margin: auto;
  border-color: rgba(36,35,35,1);
  border-style: dashed;
}
.text-box {
  padding: 0;
  background: rgba(36,35,35,0.73);
  margin: 1% 3%;
}
.liv-box {
  padding: 0;
  background: rgba(36,35,35,0.73);
  border-radius: 5px;
}
.rounded {
  border-radius: 5px;
}

/* Slideshow container */
.slideshow-container {
  max-width: 95%;
  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;
  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;
}



/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  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 */
.slide {
  animation-name: slide;
  animation-duration: 0.1s;
}

@keyframes fade {
  from {opacity: .2}
  to {opacity: 1}
}
.zoomR {
  transition: transform .1s;/* Animation */
}

.zoomR:hover {
  transform: scale(1.6) translate(22%, 15%); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.zoomC {
  transition: transform .1s;/* Animation */
}

.zoomC:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.zoomL {
  transition: transform .1s;/* Animation */
}

.zoomL:hover {
  transform: scale(1.4) translate(-15%, -10%); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.zoomS {
  transition: transform .4s;/* Animation */
}

.zoomS:hover {
  transform: scale(1.1) translate(4%); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

