* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prata', serif;
}



body {
    background-color: #ff9999;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.player-container {
    width: 300px;
    background-color: #e07676;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.player-header {
    background-color: #9b4343;
    padding: 10px;
    text-align: center;
}

.player-header h1 {
    font-size: 18px;
}

.player-body {
    padding: 20px;
    text-align: center;
}

.album-cover img {
    width: 90%;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: .3s all ease;
}

.album-cover img:hover {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px black;
}

.song-info h2 {
    font-size: 16px;
    margin-bottom: 5px;
}

.song-info p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
}

.controls {
    margin-bottom: 20px;
}

.controls button {
    background-color: #ff9f73;
    color: #fff;
    border: none;
    padding: 10px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.controls button:hover {
    background-color: #912c2c;
}

.progress-container {
    margin-bottom: 20px;
}

#progress {
    width: 100%;
    background-color: #983a3a;
    border-radius: 5px;
    cursor: pointer;
}

.time {
    font-size: 12px;
    color: #895151;
    margin-top: 5px;
}
