body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "Arial", sans-serif;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa, #e0eafc);
  z-index: -1;
  animation: gradientBackground 15s ease infinite;
}

@keyframes gradientBackground {
  0% {
    background: linear-gradient(135deg, #f8f9fa, #e0eafc);
  }
  25% {
    background: linear-gradient(135deg, #e0eafc, #f8f9fa);
  }
  50% {
    background: linear-gradient(135deg, #f8f9fa, #e0eafc);
  }
  75% {
    background: linear-gradient(135deg, #e0eafc, #f8f9fa);
  }
  100% {
    background: linear-gradient(135deg, #f8f9fa, #e0eafc);
  }
}

.dog-image-container {
  width: 100%; /* Full width of the column */
  height: 400px; /* Fixed height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 -4px 8px rgba(0, 0, 0, 0.1),
    4px 0 8px rgba(0, 0, 0, 0.1), -4px 0 8px rgba(0, 0, 0, 0.1); /* Shadow on all sides */
  padding: 10px; /* Add padding inside the container */
}

#dog-image-1,
#dog-image-2,
#dog-image-3 {
  max-width: 100%;
  max-height: 100%;
}

.handwritten-title {
  font-family: "Pacifico", cursive;
  font-size: 2.5rem;
  color: #333;
}

.handwritten-neon {
  font-family: "Indie Flower", cursive;
  font-size: 1.5rem;
  color: #555;
  font-weight: bold;
  transition: color 0.5s ease, transform 0.5s ease;
}

.handwritten-neon:hover {
  color: #ff69b4;
  transform: scale(1.1);
}

.fetch-dog-btn {
  font-family: "Pacifico", cursive;
  font-size: 1.2rem;
}

.footer {
  padding: 20px 0;
}

.github-profile {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  color: #333;
}

.github-profile a {
  color: #333;
  text-decoration: none;
}

.github-profile a:hover {
  color: #ff69b4;
}