body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: white;
}

.center-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 2em;
  
}

.left-text {
  text-align: left;
  margin-left: 10px; /* adjust the value as needed */
  margin-right: 10px; /* adjust the value as needed */
}

.red-link {
  color: red;
}

header {
  background-color: transparent;
  color: white; /* or any color that contrasts your background */
  padding: 1em;
  text-align: center;
  position: relative;
  z-index: 2;
}


.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2em;
  gap: 20px;
}

.gallery figure {
  width: 250px;      /* set desired width */
  height: 150px;     /* set desired height */
  object-fit: cover; /* ensures image fills space neatly */
  display: block;    /* removes extra spacing below image */
  background: white;
  /*border-radius: 8px;*/
  /*box-shadow: 0 0 10px rgba(0,0,0,0.1);*/
  overflow: hidden;
  margin: 0;
}

.gallery img {
  width: 100%;
  display: block;
}

figcaption {
  padding: 0.5em;
  text-align: center;
  font-size: 0.9em;
}

.gallery-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.auto-scroll {
  display: flex;
  gap: 20px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.auto-scroll figure {
  flex: none;
  width: 250px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.header-sections {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 1em;
  flex-wrap: wrap;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.section img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
}

.header-banner {
  width: 100%;
  height: auto;
  display: block;
}

.header-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
  background-color: transparent;
  color: white;
  font-size: 0.9em;
}

.header-table th,
.header-table td {
  border: none;
  padding: 0px;
  text-align: center;
}

.header-table img {
  max-width: 100%;
  height: auto;
  display: block;
}
.column-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.body-table th,
.body-table td {
  border: none;
  padding: 10px;

}

.custom-text-header {
  color: red; /* sets the font color (e.g., orange-red) */
  font-size: 50px; /* sets the size of the text */
  
  font-style: italic;
  /*font-family: 'French Script MT';*/
  /*font-family: 'Vladimir Script';*/
  font-family: 'Brush Script MT';
  text-align: center;
}

hr {
  border: none;
  height: 2px;
  background-color: red; 
  margin: 0;
}

.lined-text {
  display: flex;
  align-items: center;
  text-align: center;
  margin:  0;
}

.lined-text::before,
.lined-text::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid red;
  margin: 0 1em;
}

.lined-text span {
  font-weight: bold;
  color: red;
}
