/* General body styling */
body {
  background-color: hsla(0, 0%, 92%, 100);
  margin: 0;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Centered headline */
.headline {
  font-size: 180%;
  margin: 20px 0;
  height: 4vh; 
  max-height: 4vh; 
}

.info-headline {
  font-size: 1.3rem;
  font-weight: bold;
}
.image-info {
  position: relative;
  left: 20%;
  width:60%;
  font-size: 1rem;
  margin: 5px 0;
  height: 15vh; 
  max-height: 15vh; 
  overflow: auto;
  align-items: top;
  //background-color: rgba(100, 0, 0, 0.4);
}


/* Slideshow container */
.slideshow-container {
  position: relative;
  width: 60%;
  height: 60vh;	
  max-height: 60vh;  
  max-width: 60%; 
  margin: auto;
  overflow: hidden;
  padding-bottom: 50px; 
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsla(0, 0%, 92%, 100);
  //background-color: rgba(100, 0, 0, 0.9);
}

/* Slide styling */
.slide {
  display: none;
  position: relative;
}

/* Image styling */
.slide-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Navigation arrows */
.prev, .next {
  position: absolute;
  top: 40%;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  user-select: none;
  z-index: 1;
  transform: translateY(-50%);
}

.prev {
  left: 17%;
}

.next {
  right: 17%;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Footer Link Styles */
.footer-links {
  margin-top: 40px;
  //background-color: rgba(100, 0, 0, 0.9);
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 1rem;
  
}

.footer-links a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .prev {
    left: 0;
  }

  .next {
    right: 0;
  }
  
  .slideshow-container {
  height: 40vh;	
  max-height: 40vh;  
  
}
}