body {
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: #f0f8ff;
  margin: 0;
  padding: 0;
}

h1 {
  color: #333;
  margin-top: 20px;
  font-size: 2rem;
}
h2 {
  color: #0077cc; /* Change this to your preferred color */
  font-family: 'Comic Sans MS', cursive, sans-serif; /* Change this to your preferred font */
  margin-top: 10px;
}


.animal-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 10px;
}

.animal-container img {
  width: 150px;
  height: 150px;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.animal-container img:hover {
  transform: scale(1.1);
}

.logo {
  position: absolute;
  top: 10px;
  width: 80px;
  height: auto;
  z-index: 10;
}

.left-logo {
  left: 10px;
}

.right-logo {
  right: 10px;
}

.trademark-logo {
  position: fixed;
  bottom: 5px;
  right: 10px;
  width: 80px;
  height: auto;
  opacity: 0.8;
  z-index: 1000;
}

/* Responsive Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }

  .animal-container img {
    width: 120px;
    height: 120px;
  }

  .logo {
    width: 60px;
  }

  .trademark-logo {
    width: 60px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.2rem;
  }

  .animal-container {
    gap: 10px;
  }

  .animal-container img {
    width: 100px;
    height: 100px;
  }

  .logo {
    width: 50px;
  }

  .trademark-logo {
    width: 50px;
  }
}
