.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width:50%;
}

.centered-content {
  text-align: center;
  padding: 20px;
}

/* Thick horizontal rule */
.thick-hr {
  width: 100%;
  background-color: #4E6C50;
  height: 3px; /* Sets the thickness of the horizontal rule */
  /* border-radius: 10px; */
  margin: 40px auto; /* Adds some vertical spacing around the rule */
}

/* Comment box styling */
.comment-box {
  border: 4px solid; /* Thick border */
  border-color: #395144;
  width: 100%;
  margin: auto;
  box-shadow: 10px 10px 5px grey;
  /*border-radius: 10px;*/
}

.comment-text {
  padding: 20px;
}

.comment-box-title {
  font-size: 160%; /* Makes the title twice as large as the text that follows */
  margin-bottom: 20px; /* Adds some space between the title and the rest of the content */
}

/* Quotation styling */
.my-quotation {
  font-family: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif;   /*font-family: 'Dancing Script', cursive;*/
  font-style: italic;
  font-size: 150%; /* Adjust size as needed */
  font-weight: 700; /* Use a bolder variant for emphasis */
  text-align: center;
  margin: 40px; /* Adds some space around the quotation */
  border-left: 5px solid #333; /* Adds a stylistic bar to the left; optional */
  padding-left: 15px; /* Space between the left border and the text */
}

.my-quotation-author {
  font-family: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif;      /*font-family: 'Dancing Script', cursive;*/
  font-style: normal;
  font-size: 80%; /* Adjust size as needed */
  font-weight: 500; /* Use a bolder variant for emphasis */

}

/* My Callout */
.my-callout {
  border: 2px solid; /* Thick border */
  border-color: #AE431E;
  width: 100%;
  padding: 10px;
  box-shadow: 10px 10px 5px grey;
  /*border-radius: 10px;*/
}

.ongoing-thoughts {
  border: 5px solid; /* Thick border */
  border-color: #395144;
  background-color: #F9EFDB; /*#FEFAE0;*/
  width: 100%;
  margin: auto;
  box-shadow: 10px 10px 5px grey;
  padding: 20px;
  /*border-radius: 10px;*/
}

.ongoing-thoughts-title {
  font-size: 160%; /* Makes the title twice as large as the text that follows */
  margin-bottom: 20px; /* Adds some space between the title and the rest of the content */
}

.periodic-updates {
  border: 5px solid; /* Thick border */
  border-color: #4E6C50;
  background-color: #F8F4EC;
  width: 100%;
  margin: auto;
  box-shadow: 10px 10px 5px grey;
  padding: 20px;
  /*border-radius: 10px;*/
}

.periodic-updates-title {
  font-size: 160%; /* Makes the title twice as large as the text that follows */
  margin-bottom: 20px; /* Adds some space between the title and the rest of the content */
}

/* Photo Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.gallery img {
  width: 300px;
 /* height: 300px;*/
  object-fit: cover;
  border-color: black;
  border-width: 2px;
  border-style: solid;
}

.divBox {
  background-color: var(--accent-bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 10px
}

/* Bible verse */
.dailyVersesWrapper
{
  text-align: center;
  font-size: 0px; 
}
.dailyVerses.bibleVerse
{
  margin-top: .5em;
}
.dailyVerses.bibleVerse a
{

}

/* Quotes */
.serif-quote {
  font-family: "Georgia", "Palatino Linotype", "Times New Roman", serif;
  font-style: italic;
  color: #2c2c2c;
  background: #fefefe;
  border: 1px solid #ddd;
  border-left: 5px solid #aaa;
  border-radius: 8px;
  padding: 2em 2.5em;
  margin: 2.5em auto;
  max-width: 800px;
  position: relative;
  line-height: 1.8;
  font-size: 1.4rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.serif-quote:hover {
  background-color: #f0f0f0;
  border-left-color: #555;
}

.serif-quote::before {
  content: "“";
  font-size: 5rem;
  color: #aaa;
  position: absolute;
  left: 20px;
  top: -20px;
  font-family: serif;
  line-height: 1;
}

.serif-quote::after {
  content: "”";
  font-size: 5rem;
  color: #aaa;
  position: absolute;
  right: 20px;
  bottom: -40px;
  font-family: serif;
  line-height: 1;
}

.serif-quote cite {
  display: block;
  font-style: normal;
  text-align: right;
  color: #666;
  margin-top: 1.5em;
  font-size: 1.1rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .serif-quote {
    padding: 1.2em 1.5em;
    font-size: 1.1rem;
  }

  .serif-quote::before,
  .serif-quote::after {
    font-size: 3rem;
  }

  .serif-quote cite {
    font-size: 1rem;
  }
}

