/* Styles for Homework 4 */

/* Centers the heading 1 tag */
h1 {
  text-align: center;
}

/* Section container where the counter resides */
#container {
  padding: 25px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/* Source information section */
#source_info {
  padding: 15px;
  background-color: #eee;
  border-radius: 20px;
  width: 50%;
  margin: 0 auto;
  box-shadow: 1px 1px 5px #333;
  font-size: 0.85em;
}

/* Styles the Like button */
#like {
  padding: 15px;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

/* Centers the stork image */
.center {
  display: block;
  margin: 0 auto;
  width: 45%;
}

/* Changes the color of the heart icon to red */
.fa_custom {
  color: #db0808;
}

/* Centers the validation text */
#validation {
  text-align: center;
}

/* Adds a margin around the entire footer */
footer {
  margin: 50px;
}
