/* Body background */
body {
  background: rgb(17, 17, 17);
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Header section */
.header-content {
  text-align: center;
  padding: 20px;
}

/* Button styling */
.btn {
  background-color: rgb(216, 34, 74);
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: rgb(190, 30, 65);
}

/* Container for cats */
.cats {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
  padding: 20px;
}

/* Cat image wrapper */
.random_cats {
  width: 40%;
  margin: 20px auto;
  padding: 0 10px;
}

/* Responsive image */
img {
  width: 100%;
  height: auto;
  max-width: 700px;
}

/* Responsive: Make cats bigger on phones */
@media (max-width: 768px) {
  .random_cats {
    width: 90%;
  }
}

/* Footer style */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}

footer a {
  color: #ff6347;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
