* {
  box-sizing: border-box;
}


body {
  margin: 0;
}

.top-box {
  border: 2px solid black;
  padding: 20px;
  background-color: rgb(107, 82, 82);
  text-align: center;
}
.top-box h1 {
  color: black;              /* text color */
} 
.navbar {
  background-color: #f5f5f5;
  padding: 12px 0;
  width:100%;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;   /* centers the navbar */
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.footer-container {
  border: 2px solid rgb(14, 13, 13);
  width:100%;
}
.footer {
  width: 100%;
  background-color: #222;
  color: white;
  padding: 20px 0;
  margin-top: 2000px;
  text-align: center;
}
@media (max-width: 768px) {

  .intro-container {
    flex-direction: column;
    text-align: center;
  }

  .intro-container img {
    max-width: 100%;
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
  }

}
ol li {
  margin-bottom: 12px;
}
.stories-container {
  max-width: 300px;
  margin: 50px 0 50px 40px;
  padding: 30px;
  background-color: rgba(169, 152, 152, 0.945);
  border-radius: 12px;
}
.stories-row {
  display: flex;
  gap: 30px;
  margin-left: 40px;
}
.stories-container {
  flex: 1 1 22% ;
  min-width:220px;
  padding: 20px;

  background-color: rgba(238, 246, 249, 0.468);
  border-radius: 12px;
}
@media (max-width: 768px) {
  .stories-row {
      flex-direction: column;
      margin-left: 20px;
      margin-right: 20px;
  }
}
/*shirgul maharaj story container background */
.story-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(227, 215, 215, 0.907); /* transparent black */
    color: #050000;
    border-radius: 12px;
    line-height: 1.8;
    font-size: 16px;
}

.story-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
    letter-spacing: 1px;
}

.story-container p {
    margin-bottom: 15px;
    text-align: justify;
}
/* Shirgul Maharaj story – readable text */
.story-container {
    font-size: 19px;
    line-height: 1.9;
}

.story-container p {
    font-size: 35px;
}

.story-container h1,
.story-container h2 {
    font-size: 70px;
}


@media (max-width: 768px) {
    .story-container {
        font-size: 18px;
    }

    .story-container p {
        font-size: 18px;
    }

    .story-container h1,
    .story-container h2 {
        font-size: 26px;
    }
}
/* QUOTE CONTAINER*/

