  body {
    font-family: Merriweather, Times, serif;
	font-size: 100%;
    margin: 0;
    line-height: 1.6;
	background-image: url("../images/folder1.png");
	background-size: 400px auto; /* or contain, depending on your needs */
	background-position: 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: bold;
    text-align: left;
    font-size: clamp(3rem, 6vw, 7rem);
  }
  
  p {
	color: black;
    font-weight: normal;
    text-align: left;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
	background-color: rgb(255,255,255,0.8);
    padding: 20px;
    box-sizing: border-box;
  }
  
   .content {
    max-width: 1000px;
    margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
  }
 
   .container2 {
    display: flex;
    justify-content: center; /* Center the images horizontally */
    align-items: center; 
    gap: 20px; /* Space between images */
  }
  .container2 img {
    max-width: 100%; /* Make images responsive */
    height: auto;
  }
   .content1 {
    max-width: 800px;
    margin: 0 auto;
	display: flex;
	flex-wrap: wrap;	
  }
  .details {
    display: flex;
    flex-direction: column;
    align-items: left;
	justify-content: flex-start;
    width: 600px;
    text-align: left;
	}
  .text {
    flex: 1; /* Take up remaining space */
  }
  .image {
    /*flex: 1; /* Or set a fixed width if preferred */
	width: 15%;
	height: auto;
  }

    @media(max-width: 768px){
      .text {
        flex: 1 1 100%; /* stack vertically on small screens */
      }
    }
    @media(max-width: 768px){
      .image {
        flex: 1 1 50%; /* stack vertically on small screens */
      }
    }

@media (max-width: 600px) {
  .container2 {
    flex-direction: column;
    justify-content: center;
  }
    /* Group left and right images together */
  .image:first-child,
  .image:last-child {
    order: 1; /* Put both images before the text */
	display: flex;
	gap: 20px;
	align-items: center;
    justify-content: center;
  }

  .text {
    order: 2; /* Text comes after the images */
    flex-basis: 100%; /* Take full width */
  }
} 
