body {
  margin: 0;
  font-family: 'EB Garamond', serif;
  background-color: #f8f8f8;
}

header {
  background: #4a7c5b;
  color: white;
  text-align: center;
  padding: 40px 0;
}

nav {
  display: flex;
  justify-content: center;
  gap: 200px;
  margin-top: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 22px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 320px);
  justify-content: center;
  gap: 80px;
  padding: 80px 0;

  
}

.card {
  position: relative;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.label {
  width: 150px;
  height: 40px;
  background: #a8b96b;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.card:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

footer {
  background: #4a7c5b;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 60px 0;
  margin-top: 60px;
}