@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    min-height: 100vh;
    background-color: #2b2b2b;
}
.container-main {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}
@media(max-width: 500px) {
    .container-main {
        width: 100%;
    }
}
h1, h2, h3, h4 {
    color: #ffffff;
}
h1 {
    font-size: 30px;
}
span {
    color: #bbbbbb;
}
.container-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.title img {
    width: 40px;
}
.link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}
.link img {
    width: 14px;
}
.link span {
    font-size: 12px;
}
.container-player {
    display: none;
    flex-direction: column;
    gap: 15px;
}
.currently-playing-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.last-played-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.next-last-track-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.content-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.content-image {
    position: relative;
}
.content-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}
.content-text {
    position: relative;
    z-index: 2;
    text-align: center;
}
.additional-content {
    display: flex;
    align-items: center;
    border-right: 2px solid #777777;
    background-color: #333333;
}
.additional-content-text {
    text-align: left;
    flex: 1;
    padding: 0 10px;
}
.additional-content-img {
    width: 100px;
    display: block;
}
/* 
    * ----------------------------------------------
    * Generated by Animista on 2023-12-7 22:55:13
    * Licensed under FreeBSD License.
    * See http://animista.net/license for more info. 
    * w: http://animista.net, t: @cssanimista
    * ---------------------------------------------- 
    *
    * ----------------------------------------------
    * animation ping
    * ----------------------------------------------
*/
.ping {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #777777;
    z-index: 1;
	-webkit-animation: ping 2s ease-in-out infinite both;
	        animation: ping 2s ease-in-out infinite both;
}
@-webkit-keyframes ping {
    0% {
      -webkit-transform: scale(1.0);
              transform: scale(1.0);
      opacity: 0.4;
    }
    80% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
      opacity: 0;
    }
    100% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
      opacity: 0;
    }
}
@keyframes ping {
    0% {
      -webkit-transform: scale(1.0);
              transform: scale(1.0);
      opacity: 0.4;
    }
    80% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
      opacity: 0;
    }
    100% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
      opacity: 0;
    }
}