  body {
    font-family: Merriweather, Times, serif;
	font-size: 100%;
    margin: 0;
    line-height: 1.6;
	background-image: url("../images/NK Header 2.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 */
  }

@media screen and (max-width: 480px) {
	body {
		background-image: url("../images/NK Header 2.png");
		background-size: 400px auto; /* 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);
  }

  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;
  }
  
  .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;
  }

  .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;
  }
}