body {
  background-image: url(images/new_back.jpg);
  background-attachment: fixed;
  margin: 0px;
  margin-top: 0px;
  padding: 0;
font-family: Roboto;
}

.main {
  width: 781px;
  margin: 0 auto;
  padding: 0;
  background-color: whitesmoke;
}



.main_body_text  {
  margin: 20px 30px;
  margin-bottom: 100px;
}


.random_images {
  margin: 10px 20px;
}


.banner {
  display: block;
  margin-bottom: 0;
  padding: 0;
  margin: 0 auto;
}

.navbar {
  margin-top: 0;
  margin-bottom: 70px;
  left: 0;
  width: 100%;
  z-index: 1; 
  display: block;
  background: cadetblue;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.navbar ul {
  margin: 0px auto;
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 0px;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  display: block;
}

.navbar ul li ul {
  padding: 0;
  position: absolute;
  left: 0;
  display: block;
  display: none;
  visibility: hidden;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: cadetblue;
  width: 150px;
}

.navbar ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
	z-index: 999;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.navbar a:hover {
  background-color: hsla(0, 0%, 17%, 1.00) ;

}

.main_body {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.footer{
	background-color: cadetblue;
	margin-top: 5
}


.banner img {
  animation: fadeInDown 1s;
}


@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.random_images img {
  animation: fadeInTop 1s;
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.banner {
  position: relative;
  display: inline-block;
}

.banner img {
  width: 100%;
  height: auto;
}

.banner-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  font-size: 14px;
  font-weight: bold;
  animation: fadeInLeft 1s;
}


.footer {
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(calc(-50% - 100px));
  }
  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}




.random_images a {
  position: relative;
  display: inline-block;
	
}



.random_images a::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.5s;
	
}

.random_images a:hover::after {
  opacity: 1;
	
}












.contact_info{
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 100px;
  text-align: center;
  line-height: 1.5;
}



/*
*/


@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(calc(-50% - 100px));
  }
  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}







.slideshow-container {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust the height to your liking */
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide:first-child {
  display: block;
}


.breed_info {
  width: 80%;
  margin: 0 auto;
}


.slideshow-container {
  width: 80%;
  margin: 0 auto;
}



