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

header {
  background-color: #333;
  color: white;
  padding: 1rem;
  text-align: center;
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.destination {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.destination img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination h2 {
  padding: 1rem;
  margin: 0;
}

.destination p {
  padding: 0 1rem 1rem;
  margin: 0;
}
