/* Set the background color */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Style the header */
  header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Style the logo */
  .logo {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .logo a {
    color: #fff;
    text-decoration: none;
  }
  
  /* Style the navigation */
  nav {
    display: flex;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  nav li {
    margin-right: 20px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Style the main section */
  main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  section {
    margin-bottom: 40px;
  }
  
  h2 {
    font-size: 30px;
    font-weight: 700;
    margin-top: 0;
  }
  
  p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px 0;
  }
  
  /* Style the footer */
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
  }
  
  footer p {
    margin: 0;
  }
  
  @media only screen and (max-width: 600px) {
    /* Style the logo for smaller screens */
    .logo {
      font-size: 24px;
    }
  
    /* Style the navigation for smaller screens */
    nav ul {
      display: none;
    }
  
    nav.open ul {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #333;
      padding: 10px;
    }
  
    nav.open li {
      margin-right: 0;
    }
  
    nav.open a {
      display: block;
      margin-bottom: 10px;
    }
  
    nav.toggle {
      display: block;
      margin-right: 20px;
      font-size: 24px;
      cursor: pointer;
    }
  }
  