@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); html { box-sizing: border-box; } body{ margin: 0; font-family: 'Courier New', Courier, monospace; font-size: 14px; min-height: 100vh; display: block; align-items: center; justify-content: center; } .background{ position: fixed; width: 200%; height: 200%; top: -50%; left: -50%; z-index: -1; } .background img{ position: absolute; margin: auto; top:0; left:0; bottom: 0; right: 0; min-width: 50%; min-height: 50%; filter: blur(15px); -webkit-filter: blur(50px); transform: scale(1.1); } .container { background-color: hsla(0, 0%, 8%, 0.795); height: 500px; width: 400px; border-radius: 20px; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); transition: all 0.5s ease; } .container:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.6); } .player-img{ width: 300px; height: 300px; position: relative; top: -50px; left: 50px; } .player-img img{ object-fit: cover; border-radius: 20px; height: 0; width: 0; opacity: 0; box-shadow: 0 5px 30px 5px rgba(0,0,0,0.5); } .player-img:hover img{ box-shadow: 0 5px 30px 5px rgba(0,0,0,0.8); } .player-img img.active{ width: 100%; height: 100%; transition: all 0.5s; opacity: 1; } h2{ font-size: 25px; text-align: center; font-weight: 500; margin: 10px 0 0; } h3{ font-size: 18px; text-align: center; font-weight: 500; margin: 10px 0 0; } .player-progress{ background-color: aliceblue; border-radius: 5px; cursor: pointer; margin: 40px 20px 35px; height: 6px; width: 90%; } .progress{ background-color: #212121; border-radius: 5px; height: 100%; width: 0%; transition: width 0.1s linear; } .music-duration{ position: relative; top: -25px; display: flex; justify-content: space-between; } .player-controls{ position: relative; top: -15px; left: 120px; width: 200px; } .fa-solid{ font-size: 30px; color: #666; margin-right: 30px; cursor: pointer; user-select: none; transition: all 0.3s ease; } .fa-solid:hover{ filter: brightness(40%); } .play-button{ font-size: 44px; position: relative; top: 10px; }