body {
  margin: 0;
  background: #111;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white; /* 👈 makes text white */
  font-family: 'Work Sans', sans-serif; /* 👈 modern font */
}

h1{
  position: relative;
  top: 5px;
  font-family: 'Work Sans', serif;
  font-weight: 300;

}
.site-header {
  text-align: center;
  padding: 10px 0 20px;
}

.site-header h1 {
  font-size: 3em;
  font-weight: 300;
  margin: 0;
  color: white;
  font-family: 'Work Sans', sans-serif;
}
.page-wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}


.page-content {
  max-width: 800px;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1001;
}

.page-content h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.page-content p {
  

}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px; /* spacing below the slideshow */
  z-index: 999;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 999;

}

.slide.active {
  opacity: 1;
}

.dots-container {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
    z-index: 1000;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: white;
}

@media (max-width: 1220px) {
  .slideshow-container {
    width: 100%;
    height: 500px;
    border-radius: 10px;
  }

  p{
  width: 100%;
  font-size: 1.2em;
  line-height: 1.6;
  color: #ccc;
      background: linear-gradient(
      to bottom right,  
      #464646,
      #2b2b2b
    );
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  margin: 0 auto 1.5em auto;
  box-sizing: border-box;
  text-align: center;
}
}

@media (min-width: 1221px) {
  p {
    position: relative;
    bottom: 70px;
    left: 300px;
    width: 400px;
    font-size: 1.2em;
    line-height: 1.6;
    color: #ccc;
    background: linear-gradient(
      to bottom right,  
      #464646,
      #2b2b2b
    );
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin: 0 auto 1.5em auto;
    box-sizing: border-box;
    text-align: center;
    z-index: 1000;
  }
}
