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

body {
    background-color: #000;
    font-family: 'Google-Sans', sans-serif;
    color: #fff;
    padding: 20px;
}

.headerImage {
    max-height: 350px;
    width: auto; /* Adjusts width to maintain aspect ratio */
    display: block; /* Centers image if inside a div or similar element */
    margin: 0 auto; /* Centers image horizontally */
    object-fit: cover; /* Ensures the image covers the area, might crop it */
}


.card {
    background-color: black;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.card-img-top {
    width: 100%;
    height: auto;
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  padding: 0px;
}

.mySlides {
  display: none;
}

.fade {
  animation-name: fade;
  animation-duration: 5.5s;
}

@keyframes fade {
  from {opacity: .2} 
  to {opacity: 1}
}

.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;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

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

.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;
}
