/* Reset margin and padding for all elements */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
}

header,
footer {
  background-color: rgb(8, 69, 69);
  color: white;
  text-align: center;
  align-content: center;
}

header {
  position: sticky;
  top: 0;
  height: 90px;
  padding-top: 10px;
}

footer {
  height: 200px;
  font-size: 30px;
}

.banner-img,
.puppy2Img,
.more-pups-wrapper .img {
  width: 100%;
  height: 100%;
}

.three-pups-wrapper {
  display: block;
  width: 100%;
  padding: 30px 0;
  text-align: center;
}

.img1,
.missing-content {
  width: 100%;
  margin: 1% 0;
}

.missing-content {
  background-color: tomato;
  font-size: 40px;
  text-align: center;
  height: 400px;
  align-content: center;
  justify-content: center;
}

.more-pups-wrapper {
  margin: 0 2%;
  text-align: center;
}

.more-pups-wrapper h1 {
  padding: 20px 0;
  font-size: 30px;
}

.more-pups,
.more-pups-wrapper img {
  width: 100%;
  /* margin: 0 auto; */
}

@media (min-width: 768px) {
  /* Main section layout adjustments */
  .main-section {
    width: 90%;
    margin: 0 auto;
    padding: 40px 40px;
  }

  /* Adjust three pups layout for larger screens */
  .three-pups-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 75%;
    margin: 0 auto;
    /* height: auto; */
  }

  .img1,
  .missing-content {
    width: 20vw;
    height:50vh;
  }

  .missing-content {
    margin: auto 1%;
    
 
  }

  /* Adjust the more pups wrapper layout */
  .more-pups-wrapper {
    width: 93%;
    margin: 0 auto;
  }

  .more-pups-wrapper h1 {
    font-size: 45px;
  }

  .more-pups-wrapper .img {
    display: inline-flex;
    justify-content: center;
  }

  .more-pups-wrapper .img div {
    height: 100%;
    width: 30vw;
    margin: 1% 0.5%;
  }
}
