body {
  font-family: Tahoma, sans-serif;
  margin: 0;
  background-color: #fff;
}

header {
  background-color: #f2f2f2;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

logo {
  font-size: 42px;
  font-family: Tahoma, sans-serif;
  font-weight: bold;
  text-decoration: none;
  display: flex;
}

logo a {
  color: black;
  text-decoration: none;
}

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

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

nav a:hover {
  text-decoration: none;
}

form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 20px;
}

.galleryItem img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
