  body {
    font-family: Times New Roman, Times, serif;
	font-size: 100%;
    margin: 0;
    line-height: 1.6;
	background-image: url("../images/NK page 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: 1000px) {
  body {
	background-image: url("../images/NK page 3.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: bold;
    text-align: left;
    font-size: clamp(3rem, 6vw, 7rem);
    display: block;
    width: 100%;
  }
  h2 {
    font-weight: normal;
	font-family: Century Gothic, verdana, sans-serif;
    text-align: left;
    font-style: normal;
	font-size: clamp(2.1em, 3.1vw, 4rem);
    display: block;
    width: 100%;
  }
   .content {
    max-width: 800px;
    margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
  }
   .content 1 {
    max-width: 800px;
    margin-left: 0 ;
	margin-right: auto;
	margin-top: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
  }
   .content-button {
    max-width: 800px;
    margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: left;
  }
  p {
	color: black;
    font-weight: normal;
    text-align: left;
    font-size: clamp(1.2rem, 1.2vw, 1.2rem);
	background-color: rgb(255,255,255,0.8);
    padding: 20px;
    box-sizing: border-box;
  }

  ul {
	color: black;
    font-weight: normal;
    text-align: left;
    font-size: clamp(1.2rem, 1.2vw, 1.2rem);
	background-color: rgb(255,255,255,0.7);
    padding: 20px;
    box-sizing: border-box;
  }

  li {
	color: black;
    font-weight: normal;
    text-align: left;
    font-size: clamp(1.2rem, 1.2vw, 1.2rem);
	background-color: rgb(255,255,255,0.7);
    padding: 20px;
    box-sizing: border-box;
  }
	
   .container2 {
    display: flex;
    justify-content: center; /* Center the images horizontally */
    gap: 20px; /* Space between images */
  }
  .container2 img {
    max-width: 100%; /* Make images responsive */
    height: auto;
  }

  .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;
  }
}
  
  /* Buttons container */
  .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  /* Style for each button */
  .btn {
    background-color: rgb(0,0,153); /* green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
	font-size: 2.0em;
    text-align: center;
    min-width: 150px;
  }
  .btn:hover {
    background-color: blue;
  }
  .team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	flex-direction: column;
    align-items: left;
	justify-content: center;
  }