@import url('https://fonts.googleapis.com/css?family=Kavivanar');

* {
  box-sizing: border-box;
}

body {
  font-family: "Varela Round", sans-serif;
}
img{
  border-radius: 5px;
}

.player {
  width: 100%;
  max-width: 340px;
  padding: 20px;
  margin: 10px auto;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 5px;
}
.player .album-cover {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 300px;
  background-size: cover;
  border-radius: 5px;
}
.player .album-cover img {
  display: block;
  max-width: 100%;
}
.player .song-progress-bar {
  width: 100%;
  height: 3px;
  background: #ddd;
  margin: 10px 0;
}
.player .song-progress-bar .inner-bar {
  height: 3px;
  background: #df405a;
  width: 25%;
}
.player .song-info .song-title {
  margin-bottom: 0;
}
.player .player-buttons {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}
.player .player-buttons .playerbtn i {
  font-size: 25px;
  cursor: pointer;
  transition: 0.15s ease-in-out;
}
.player .player-buttons .playerbtn i:hover {
  color: #df405a;
}
.album{
font-family: 'Kavivanar', cursive;
color: #000;
}
.fa-heart{
  animation: heart 1s infinite ease-in-out;
  color:#e83350;
}
@keyframes heart {
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.3);
  }
  100%{
   transform: scale(1); 
  }
}
