body {
      font-family: Arial, sans-serif;
      text-align: center;
      padding-top: 50px;
      background-color: #eeeded;
}
h1 {
      margin-bottom: 0px;
}
h2 {
      font-size: 54px;
      margin-bottom: 100px;
}
h3{
      font-size: 26px;
      margin-bottom: 100px;
}
img {
      max-width: 300px;
      height: auto;
      margin-bottom: 100px;
}
.button-container {
      display: flex;
      justify-content: center;
      gap: 20px; /* space between buttons */
      flex-wrap: wrap; /* allow wrapping on small screens */
      opacity: 0.8;
}
form {
      display: inline-block;
}
button {
      padding: 1.75rem 3.5rem;
      border: none;
      border-radius: 8px;
      background-color: #4a90e2;
      color: white;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
.btn {
      padding: 1.75rem 3.5rem;
      border: 10px #5d9ae0 solid;
      background-color: #4a90e2;
      color: white;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
.container {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.text-box {
    flex: 1 1 0;
    background-color: #c2d7e7;
    color: #333;
    padding: 15px 20px;
    border: 2px solid #89cdfa;
    border-radius: 8px;
    font-size: 18px;
    width: fit-content;
    margin: 20px 0;
    white-space: pre-wrap; 
    text-align: left;
}
.text-box2 {
    flex: 1 1 0;
    background-color: #c7cfd6;
    color: #333;
    padding: 15px 20px;
    border: 2px solid #89cdfa;
    border-radius: 8px;
    font-size: 18px;
    width: fit-content;
    margin: 20px 0;
    white-space: pre-wrap; 
    text-align: left;
    overflow: hidden;
}
pre {
  color: #000000;
  padding: 10px;
  border-radius: 6px;
  overflow-x: auto;
  white-space: pre;
  font-size: 18px;
  font-weight: 900;
}
.row {
    line-height: 1;
    padding: 6px 10px; 
    font-size: 20px;
    display: flex;
    text-align: left;
    align-items: center;
    margin: 0;
    word-wrap: break-word;
}
.image-text-section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      margin: 0;
    padding: 0;
      max-width: 1500px;
      margin: 0 auto;
    }

    .image-text-section img {
      width: 100%;
      max-width: 700px; /* Make the image big but bounded */
      height: auto;
      border-radius: 10px;
      display: block;
    }

    .image-text-section .image {
      flex-shrink: 0; /* Prevent the image from shrinking */
    }

    .image-text-section .text {
      flex: 1;
      font-size: 24px;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .image-text-section {
        flex-direction: column;
        padding: 20px;
      }

      .image-text-section img {
        max-width: 100%;
      }

      .image-text-section .text {
        text-align: center;
      }
    }
.image-text-section.reverse {
  flex-direction: row-reverse;
}
.image-text-section h2,
.image-text-section p,
.image-text-section img {
  margin: 0;
  padding: 0;
}



.row:nth-child(odd) { background-color: #d1ecf1;border-top: 3px solid #000000;border-left:3px solid #000000; border-right:3px solid #000000; }
.row:nth-child(even) { background-color: #f8d7da; border-bottom: 3px solid #000000;border-left:3px solid #000000; border-right:3px solid #000000; }
