* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
/* box-sizing: border-box makes element sizing predictable 
by keeping padding and borders inside the set width and height. */
/* display: block, Takes the full width of its parent by default */
img {
  display: block;
}
/* Blue background sections */
.blue-BG {
  background-color: #195774;
}
.banner-img {
  width: 100%;
}
.myheader {
  padding: 27px 0px 24px;
  color: white;
  text-align: center;
}
/* all puppies related section */
.puppies-section {
  display: flex;
  justify-content: space-between;
  width: 960px;
  margin: 50px auto;
}
.missing-puppy {
  background-color: #ee4d65;
  width: 310px;
  height: 310px;
  padding-top: 60px;
  text-align: center;
  font-size: 56px;
  font-family: "Roboto", sans-serif;
}
.more-puppies {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
}
/* footer section */
.footer {
  padding: 30px 0px 40px;
  text-align: center;
  color: white;
}
