/* Global styles */

body {
  font-family: Arial, sans-serif;
  background-color: #F0F0F0;
  color: #333333;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: bold;
}

a {
  color: #0077CC;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Navigation styles */

header {
  background-color: #111111;
  color: #FFFFFF;
  padding: 10px;
}



nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

nav li {
  margin: 0 10px;
}

nav a {
  font-size: 16px;
  color: #CCCCCC;
}

/* Main styles */

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

main p {
  text-align: center;
  padding-bottom: 20px;
}

.call-now-button {
  display: block;
  margin: 30px auto;
  padding: 10px 20px;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-now-button:hover {
  background-color: #333333;
}



h1 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
}

.puppies {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.puppy {
  width: 30%;
  margin-bottom: 30px;
  position: relative;
}

.puppy img {
  width: 100%;
  height: auto;
}

.puppy h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(17, 17, 17, 0.8);
  color: #FFFFFF;
  padding: 10px;
  margin: 0;
  transition: all 0.3s ease;
  opacity: 0;
}

.puppy:hover h2 {
  opacity: 1;
}

/* Slideshow styles */

.slideshow {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slideshow img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slideshow img.active {
  opacity: 1;
}

/* Footer styles */

footer {
  background-color: #333333;
  color: #FFFFFF;
  padding: 10px;
  text-align: center;
}

/* Media queries */

@media only screen and (max-width: 768px) {
  .puppy {
    width: 45%;
  }
}

@media only screen and (max-width: 480px) {
  .puppy {
    width: 100%;
  }
}