body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #eaeaea;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  h1, h2 {
    text-align: center;
    color: red;
    font-family: 'Georgia', serif;
    .smokum-regular {
        font-family: "Smokum", serif;
        font-weight: 400;
        font-style: normal;
      }
      
  }

  p {
    line-height: 1.6;
  }

  /* Navigation Styles */
  nav {
    display: flex;
    justify-content: space-around;
    background-color: #333;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px;
    transition: background-color 0.3s;
  }

  nav a:hover {
    background-color: red;
    border-radius: 5px;
  }

  /* Logo */
  .logo {
    width: 150px;
    height: auto;
    margin-right: auto;
    display: block;
  }

  /* Main Content */
  header {
    text-align: center;
    padding: 50px 20px;
    background-color: #333;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  }

  header h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    color: red;
  }

  /* Grid Layout for Content */
  .content {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 20px;
  }

  /* Image Styling */
  .content img {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .content img.zombie-image-2 {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Text Block Styling */
  .content div {
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .content h2 {
    color: red;
    font-size: 1.8rem;
    font-family: 'Georgia', serif;
    margin-bottom: 15px;
  }

  /* Media Queries for Responsiveness */
  @media (min-width: 600px) {
    .content {
      grid-template-columns: 1fr 1fr;
    }

    nav {
      justify-content: space-between;
    }

    nav a {
      font-size: 1.5rem;
    }

    .content div {
      padding: 25px;
    }
  }

  @media (min-width: 1200px) {
    .content {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    nav {
      justify-content: space-evenly;
    }

    nav a {
      font-size: 1.8rem;
    }

    .content h2 {
      font-size: 2rem;
    }

    .content div {
      padding: 30px;
    }

    header h1 {
      font-size: 4rem;
    }
  }

  /* Mobile Styles */
  @media (max-width: 599px) {
    h1 {
      font-size: 2rem;
    }

    h2 {
      font-size: 1.5rem;
    }

    nav a {
      font-size: 1rem;
      padding: 8px;
    }

    .content div {
      padding: 15px;
    }
  }