body {
  font-family: "Franklin Gothic Book", Arial, sans-serif;
  margin: 0;
  color: #333;
  background-color: #fff;
}

h1, h2, h3 {
  font-family: "Bookman Old Style", serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #f5f5f5;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.navbar a {
  text-decoration: none;
  color: #333;
}

.navbar a:hover {
  color: #FF6F61;
}

.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: auto;
}


.gallery {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery img {
  width: 100%;
  max-width: 300px;
}

.services {
  list-style: none;
  padding: 0;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #f5f5f5;
  margin-top: 2rem;
}

/* Responsiivisuus */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
  }

  .gallery {
    flex-direction: column;
  }
}
