body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #1a1a1a;
}
.container {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.github-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.hero-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-icon {
  width: 130px;
  height: 130px;
  border-radius: 16px;
}
.gimg {
  border-radius: 10px;
  width: 80px;
  height: 80px;
}
ul.animal-list {
  padding-left: 1.5rem;
}
li {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
li div {
  margin-top: 1rem;
}
footer {
  text-align: center;
  margin-top: 2rem;
  color: #666;
  font-size: 0.9rem;
}
.glide__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.glide__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background-color: #eee;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}
.glide__arrow:hover {
  background-color: #ddd;
  transform: scale(1.1);
}
