a{color:#FFFFFF;}
a:hover{color:#FFFFFF;}	
a:link{text-decoration:none;}
li {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 1em;
  text-transform: uppercase;
  color: white
}
li span {
  display: block;
  font-size: 3rem;
}
h1 {
font-size: 38px;
}
h2 {
font-size: 50px;
font-weight: 500;
}
h1,h2,h3,h4,p {
    font-family: 'Poppins', sans-serif;
	font-style: normal;
	color: white
}
.fa {
  padding: 20px;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  color: #ffffff;
}

.fa:hover {
    opacity: 0.7;
    text-decoration: none;
    color: #929292;
}
.copyright-text {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 50px;
    text-decoration: none;
}
.copyright-text a {
    color: #ffffff;
    text-decoration: none;
}
.copyright-text a:hover {
    color: #929292;
    text-decoration: none;
}
.heart {
  width: 50px;
  height: 50px;
  position: relative;
  display: inline-block;
  left: 0;
  top: 18px;
  transform: translate(0%, 0%);
  background: url(../img/heart/like-3.png) no-repeat;
  background-position: 0 0;
  cursor: pointer;
  animation: fave-heart 1s steps(28);
}
.heart:hover {
  background-position: -2800px 0;
  transition: background 1s steps(28);
}
@keyframes fave-heart {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2800px 0;
  }
}