body {
  background-color: rgb(203, 246, 222);
}

h1 {
  color: rgb(0, 0, 0);
  text-align: center;
}

p {
  font-size: 16px;
  max-width: 900px;
  margin: 15px auto;
  padding: 0 20px;
}

ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}

ul li a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

ul li a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.logo {
  max-width: 60px;
  height: auto;
  border-radius: 5px;
}

h2 {
  color: rgb(0, 0, 0);
  margin: 25px 0 15px;
  font-size: 24px;
}


div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
div.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: 180px;
}

div.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

footer {
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
  background-color: rgba(0, 0, 0, 0.1);
  color: rgb(0, 0, 0);
  font-weight: 500;
}

div.galery-item div.desc {
  padding: 15px;
  text-align: center;
}