

/* body, ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
} */


body {
    /* background-color: black; */
    background-image: url(wallpaperflare.com_wallpaper\ \(4\).jpg);
    font-family: Arial, sans-serif;
    color: #f5f0f0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.title {
    /* text-shadow: 0 0 5px #fff, 0 0 1px #fff, 0 0 1px #0073e6, 0 0 2px #0073e6, 0 0 2px #0073e6, 0 0 3px #0073e6, 0 0 35px #0073e6; */
    text-align: center;
    font-size: 70px;
    margin-bottom: 20px;
    color: #f0f0f0;
    
}

.album-cover {
    display: block;
    max-width: 100%;
    margin-bottom: 20px;
}

.song-list {
    padding-left: 0;
}

.song {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #000000;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
    height: 40px;
    width: 900px;
}

.song-title {
    flex-grow: 1;
    margin-right: 10px;
    /* font-weight: bold; */
    font-size: 25px;
}

.song-length {
    font-weight: bold;
    color: #666;
}

.song:hover {
    /* background-color: #292222; */
    color: rgb(120, 19, 227);
    transform: scale(1.02);
    transition: transform 0.75s;
}

.add-to-playlist {
    background-color: #4CAF50; /* Green background */
    border: none; /* Remove border */
    color: white; /* Text color */
    padding: 10px 20px; /* Padding around text */
    text-align: center; /* Center text horizontally */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Display as inline element */
    font-size: 16px; /* Font size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Change cursor on hover */
    margin-left: 10px;
  }
  
  .add-to-playlist:hover {
    background-color: #065509; /* Darker green on hover */
  }