body {
    font-family: 'Poppins', sans-serif;

}

header {
  width: 400px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  color: #2C4039;
  margin-top: -5px;
  margin-bottom: -10px;
}

p {
  font-size: 14px;
  color: #72807b;
}

.site-logo {
  width: 100px;
}
  

/* Set the maximum width of the page and center the content */
.container {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
  }
  
  
  /* Display the images in a vertical column */
  .image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Set the width and margin for the images */
  .image-container img {
      width: 350px;
      height: 350px;
      margin-bottom: 10px;
  }
  
  
  
  /* Set the font and alignment for the footer */
  footer {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #999;
  }
  