* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url('https://ofuxico.com.br/wp-content/uploads/2022/12/alok-show.jpg');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    height:  100vh;
    margin: 0; 
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
    color: #f1f1f1;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.player {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    color: #333;
    letter-spacing: 2px;
    text-align: center;
}

.cover-container {
    width: 200px;
    height: 200px;
    overflow: hidden;
    /* border-radius: 50%; */
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cover-container img {
    width: 100%;
    height: auto;
}

.controls button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #32b917;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.controls button:active {
    background-color: #0f9d2e;
}

.song-item {
    display: flex;
    align-items: center;
}

.coverImage {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.playlist {
    margin-top: 50px;
}

.playlist h2 {
    margin-bottom: 10px;
    font-size: 30px;
    color: #f1f1f1;
}

.playlist ul {
    list-style:none;
    padding: 0;
}

.playlist li {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 18px;
    color: #f1f1f1;
}

.playlist li:hover {
    background-color: #f9f9f9;
    color: #000;
    font-size: 18px;
}

.playlist li img {
    width: 100px;
    height: 100px;
    margin-right: 10px;
}

