body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  margin: 0; 
}

@font-face {
  font-family: "Arial Nova Light";
  src: url("fonts/ArialNova-Light.ttf") format("truetype");
}

.slideshow-container {
  position: relative;
  width: 60vh;
  height: 40vh;
  animation: fadeIn 0.5s forwards;
  padding: 30px;
  margin-top: 30vh;
  
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

img {
  width: 100%;
  height: 100%;
}

.dots-container {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #000000;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.active {
  background-color: rgb(255, 95, 69);
  border-radius: 50%;
}

.dot:hover {
  opacity: 0.1;
}

.overlay {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay p {
  text-decoration: none;
  color: rgb(230, 230, 230);
  font-size: 12px;
  font-family: "Arial Nova Light", Arial, Helvetica;
  font-weight: bold;
  font-style: italic;
  line-height: 0.5;
}

.overlay h3 {
  text-decoration: none;
  color: rgb(255, 95, 69);
  font-size: 12px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-align: left;
  font-style: italic;
  padding-left: 30px;
}

.image-item {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.image-item:hover .overlay {
  opacity: 1;
}

.image-item img {
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease;
  filter: grayscale(100%);
}

.image-item:hover img {
  filter: grayscale(0%);
}

@media screen and (max-width: 768px) {
  .overlay {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
  }
}
