* {
    font-family: "Cabin", Arial, sans-serif;
    box-sizing: border-box;
    scroll-behavior:smooth !important;
    margin: 0;
    padding: 0;
}

.bg {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(10px);
    filter: opacity(0.5);
    z-index: -1;    
}

.git-name:hover  {
    color: #A39BAC;
}

.footer-TRSS:hover, .git-name:hover {
    filter: invert(68%) sepia(10%) saturate(357%) hue-rotate(226deg) brightness(92%) contrast(86%);
}

body {    
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.player {
    display: flex;
    justify-content: center;
    align-items: center;  
    flex-direction: column;  
    width: 400px;
    height: 600px;
    border-radius: 20px;    
    background: rgba(185, 185, 186, 0.8);
    box-shadow: 0 40px 100px rgba(50, 47, 47, 0.7);
    padding: 20px;
    overflow: hidden;
    gap: 10px; 
}


.controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-img, .play-btn {
    width: 50px;
    height: 50px;    
    
}

button {
    border: none;
    background: rgba(54, 50, 50, 0); 
}
.bar:hover {
   cursor: pointer; 
}

button:hover {
    cursor: pointer;
    filter: invert(68%) sepia(10%) saturate(357%) hue-rotate(226deg) brightness(92%) contrast(86%);
     
}



.title, .music-name {
    text-align: center;
    text-transform: capitalize;
}

.music-name {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 800;
}
.title {
    font-size: 18px;
    font-weight: 500;
}


.music-img {
    width: 350px;
    border-radius: 50%;
    margin: 10px;
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-evenly;    
}

footer img {
    vertical-align: middle;
    padding-right: 5px;
}


.time {    
    border: 3px solid #000;
    height: 100%;
}

.bar {
    width: 100%;
    position: relative;
}

.time-bar {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 10px;
    background: #A39BAC;
    cursor: pointer;
    overflow: hidden;
}

.time-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 1px;
    height: 20px;
    box-shadow: -400px 0 0 400px #000;
}

.current-time, .song-duration {
    font-size: 11px;
    font-weight: 500;
}

.song-duration {
    position: absolute;
    right: 0;    
}