/*  Styles for Homework 4 */


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

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

/* ID for the source information section */
#source_info {
  padding: 15px;
  background-color: #eee;
  border-radius: 20px;
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 1px 1px 5px #333;
  font-size: .85em;
}


/* ID that styles the Like button */
#like {
  padding: 15px;
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}



/* class that centers the stork image */
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width:45%;
}

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


/* ID that centers the validation text */
#validation {
  text-align: center;
}

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