  body {
    font-family: Merriweather, Times, serif;
	font-size: 100%;
    margin: 0;
    line-height: 1.6;
	background-image: url("../images/exo.png");
	background-size: contain; /* or contain, depending on your needs */
	background-position: top right;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 20px; /* add padding to make text readable */
  }

  h1 {
    color: black;
	font-family: Century Gothic, verdana, sans-serif;
    font-weight: normal;
    text-align: left;
    font-size: clamp(3rem, 6vw, 7rem);
  }
  
  h2 {
    color: white;
	font-family: Century Gothic, verdana, sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: clamp(2.2rem, 2.2vw, 3rem);
	background-image: url("H2 header.jpg");
	background-size: cover; /* or contain, depending on your needs */
	background-position: right;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 20px; /* add padding to make text readable */
  }

  h3 {
    color: black;
	font-family: Century Gothic, verdana, sans-serif;
    font-weight: normal;
    text-align: center;
    font-size: clamp(2rem, 2vw, 3rem);
	background-color: rgb(255,255,255,0.7);
    padding: 20px;
    box-sizing: border-box;
  }
 
  p {
	color: black;
    font-weight: normal;
    text-align: left;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
	background-color: rgb(255,255,255,0.7);
    padding: 20px;
    box-sizing: border-box;
  }
  ul {
	color: black;
    font-weight: normal;
    text-align: left;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
	background-color: rgb(255,255,255,0.7);
    padding: 20px;
    box-sizing: border-box;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .container1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
  }
  
  .placement-photo {
    display: flex;
    justify-content: left;
    margin-top: 80px;
	margin-bottom: 70px;
	gap:10px;
  }
  .placement-photo span {
    display: flex;
    justify-content: left;
	margin-right: 50px;
	max-width: 300px;
  }
  .placement-photo img {
    max-width: 800px;
    height: auto;
    border: 2px solid #ccc;
	border-radius: 10px;
  }

  .placement-photo1 {
    display: flex;
    justify-content: left;
    margin-top: 80px;
	margin-bottom: 70px;
	gap:10px;
  }
  .placement-photo1 span {
    display: flex;
    justify-content: left;
	margin-right: 50px;
	max-width: 300px;
  }
  .placement-photo1 img {
    max-width: 600px;
    height: auto;
    border: 2px solid #ccc;
	border-radius: 10px;
  }

  .container2 {
    display: flex;
    justify-content: center; /* Center the images horizontally */
    gap: 20px; /* Space between images */
  }
  .image-block {
    text-align: center; /* Center caption under each image */
  }
  .container2 img {
    max-width: 100%; /* Make images responsive */
    height: auto;
  }
   .content1 {
    max-width: 800px;
    margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
  }
  
  .text {
    flex: 1; /* Take up remaining space */
  }
  .image {
    flex: 1; /* Or set a fixed width if preferred */
  }

    @media(max-width: 768px){
      .text {
        flex: 1 1 100%; /* stack vertically on small screens */
      }
    }
    @media(max-width: 768px){
      .image {
        flex: 1 1 100%; /* stack vertically on small screens */
      }
    }

@media (max-width: 600px) {
  .container2 {
    flex-direction: column;
  }
}