* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: #333;
  color: white;
  padding: 10px 0;
  text-align: center;
}

header .logo {
  width: 150px;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

main {
  padding: 20px;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.8rem;
  color: #444;
  margin-top: 20px;
}


.zombie-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.image-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-items: center;
  margin-top: 40px;
}

.zombie-img {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 10px;
}


footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  margin-top: 40px;
}


@media (max-width: 599px) {
  h1 {
      font-size: 1.8rem;
  }

  h2 {
      font-size: 1.4rem;
  }

  nav {
      flex-direction: column;
  }

  nav ul {
      flex-direction: column;
  }

  .image-gallery {
      grid-template-columns: 1fr;
  }

  .zombie-img {
      width: 100%;
  }
}


@media (min-width: 600px) and (max-width: 1199px) {
  h1 {
      font-size: 2.2rem;
  }

  h2 {
      font-size: 1.6rem;
  }

  .image-gallery {
      grid-template-columns: 1fr 1fr;
  }

  .zombie-img {
      width: 100%;
      max-width: 350px;
  }
}


@media (min-width: 1200px) {
  h1 {
      font-size: 3rem;
  }

  h2 {
      font-size: 1.8rem;
  }

  .image-gallery {
      grid-template-columns: 1fr 1fr;
  }

  .zombie-img {
      width: 100%;
      max-width: 400px;
  }
}