/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #f0da13, #42a729);
    overflow-x: hidden;

  }
  
  header {
    background-color: #333;
    color: #fff;
    padding: 10px;
  }
  
  nav {
    display: flex;
    justify-content: center;
  }
  
  nav h1 {
    font-size: 24px;
  } 
  main {
    padding: 20px;
  }
  
  section {
    margin-bottom: 30px;
  }
  
  h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  p {
    line-height: 1.5;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center; 
    bottom: 0;
    width: 100%;
  }
  
  footer p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  #top-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #logo {
    float: left;
    height: 24px; /* Adjust this to match the height of your nav text */
  }
  .responsive-image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .responsive-image {
    width: 100%;
    max-width: 300px;
    margin: 10px;
  }
  
  @media (min-width: 768px) {
    .responsive-image {
      width: calc((100% / 3) - 20px);
    }
  }