header {
  text-align: center;
  background-color: #9EA3A3;
}

.main-content{
  padding-top: 15px;
  min-height: calc(100vh - 226px);
  margin-bottom: 25px;
}

.error {
  color: red;
}

a:link {
  color: #78ab46
}

a:visited {
  color: #78ab46;
}

a:hover {
  color: #14592C;
}

a:active {
  color: #78ab46;
}

p {
  flex: 1 0 0%;
}

h1 {
  font-family: 'Lobster', cursive;
  color: #14592C;
}

h3 {
  text-align: center;
  color: #78ab46;
}

h4 {
  color: #78ab46;
}

h5 {
  text-align: center;
  font-weight: bold;
}

h6 {
  font-weight: bold;
}

.nav li a {
  color: black; 
}

.nav li a:hover {
  color: lavender;
}

.nav li a:active {
  background: #78ab46;
}

.form-question {
  font-weight: bold;
}

.question-and-answer {
  border-bottom: 1px solid black;
  padding-block-start: 10px;
}

.question-and-answer h6 {
  font-weight: bold;
}

.image-and-text {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

#liz-home-image {
  width: 100%;
  object-fit: contain;
}

#beagle-home-image {
  width: 100%;
  object-fit: contain;
}

.image-container-left {
  max-width: 15%;
  margin-right: 15px;
  flex: 1 0 auto;
}

.image-container-right {
  max-width: 25%;
  margin-left: 15px;
  flex: 1 0 auto;
}

#contact-information-image-container {
  max-width: 25%;
  margin-left: 15px;
  flex: 1 0 auto;
}

@media screen and (max-width: 600px) {
  .image-and-text {
    justify-content: center;
  }
  .image-container-left {
    width: 100%;
    max-width: unset;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .image-container-right {
    width: 100%;
    max-width: unset;
    margin-left: 0;
    margin-bottom: 15px;
  }
  #contact-information-image-container {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
}

footer {
  background-color: #9EA3A3;
  display: flex;
  flex-wrap: wrap;
}

.footer-section-side {
  display: flex;
  width: 30%;
}

@media screen and (max-width: 800px) {
  .footer-section-side {
    justify-content: center;
    width: 100%;
  }
}

.footer-section-middle {
  flex: 1 0 0%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-button {
  background-color: #78ab46; 
  border-color: #78ab46;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

button[type="submit"] {
    color: white;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease background-color;
  }

  button[type="submit"]:hover {
    background-color: rgb(214, 226, 236);
    border-color: rgb(214, 226, 236);
  }

  button[type="submit"]:active, button[type="submit"]:focus {
    background-color: #78ab46 !important; 
    border-color: #78ab46 !important;
    box-shadow: 0 0 0 .2rem #74CF17 !important;
  }

#status {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
  }

  #status.success {
    background-color: rgb(211, 250, 153);
  }

  #status.error {
    background-color: rgb(250, 129, 92);
    color: white;
  }

  #status-container {
    margin-top: 15px;
  }

  @keyframes status {
    0% {
      opacity: 1;
      pointer-events: all;
    }
    90% {
      opacity: 1;
      pointer-events: all;
    }
    100% {
      opacity: 0;
      pointer-events: none;
  }
}

.testimonial-container {
  border: 2px solid #ccc;
  background-color: #eee;
  border-radius: 5px;
  padding: 16px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-photo {
  height: 100px;
  width: 90px;
  border-radius: 50%;
  margin-bottom: 5px;
}

.client-name {
  font-weight: bold;
  text-align: center;
}

.client-testimonial {
  display: flex;
  text-align: left;
}

.testimonial-container::after {
  content: "";
  clear: both;
  display: table;
}
  
.oval-image {
  border-radius: 50%;
}
  
.container span {
  font-size: 20px;
}

.order-text {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}

#puppy-banner {
  display: flex;
  width: 100%;
  height: auto;
}

#contact-information {
  display: flex;
}

#liz-contact-information-pic {
  width: 100%;
  object-fit: contain;
}

.email-form-label {
  font-weight: bold;
  padding-top: 5px;
}