body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header, footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

footer {
  margin-top: 20px
  }

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
}


nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
  color: #ccc;
}

main {
  justify-content: space-between;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

article {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  width: 45%;
}

article img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

article h2 {
  margin-top: 0;
}

article p {
  color: #666;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.blog-posts {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-posts article {
    background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  width: 48%;
  box-sizing: border-box;
}