/*  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;
}


/*transfer from book inline styles to external css as required for assignment*/

/*counter number style*/
.counter-num {
  color: #66FFFF;
  font-size: 50px;
}

/*counter box style*/
.counter-box {
  width: 250px;
  text-align: center;
  background-color: #020202;
  padding: 40px;
  font-family: sans-serif;
  color: #999999;
  border-radius: 10px;
}

/*text styles*/
.emphasis {
  margin: 0px;
  padding: 0px;
  font-size: 38px;
}

.small-emphasis {
  margin: 0px;
  padding: 0px;
}

.small {
  margin: 0px;
  padding: 0px;
  font-size: 17px;
  opacity: 0.5;
}