  body {
    font-family: Times New Romans, Times, serif;
    margin: 0;
	padding: 20px;
    font-size: 100%;
    line-height: 1.6;
  }
  h1 {
    color: green;
	font-family: Century Gothic, verdana, sans-serif;
    font-weight: 900;
    text-align: center;
    font-size: clamp(3.5rem, 6vw, 7rem);
  }
  h2 {
    font-weight: bold;
	font-family: Times New Romans, Times, serif;
    text-align: center;
    font-style: italic;
	font-size: clamp(2rem, 2.5vw, 3rem);
    margin-top: -40px;
	margin-bottom: 40px;
  }
  p {
    margin: 20px 0;
    font-size: clamp(1.1rem, 1.5vw, 2rem);
  }
  .content {
    max-width: 800px;
    margin: 0 auto;
  }
  .image-right {
    float: right;
    margin-left: 20px;
    width: 250px;
	text-align: center; /* center the caption under the image */
  }

  .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
  }
  .footer img {
    width: 150px;
    height: auto;
  }
  .footer .left, .footer .right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .left span, .footer .right span {
    margin-top: 10px;
  }
  @media (max-width: 600px) {
    .footer {
      flex-direction: column; /* stack image, name, title vertically */
      text-align: center; /* center text under image */
	  gap: 20px;
    }
  @media (max-width: 600px) {
    p {
      flex-direction: column; /* stack image, name, title vertically */
	  gap: 20px;
    }
	
@media (max-width: 600px) {
  .image-right {
    float: none;            /* remove float */
    display: block;         /* make it block */
    margin: 0 auto 20px;    /* center the image with margin below */
    width: 80%;             /* make it scale nicely on mobile */
    max-width: 250px;       /* don’t let it get too big */
  }
}