/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font and background */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #181c28;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Parallax container */
.parallax-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
}

/* Centered content */
.content {
    text-align: center;
}

img {
    /* width: 400px; */
    /* height: 400px; */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 2em;
    /* box-shadow: 2px 2px 5px #000000; */
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.music-player {
    margin-top: 20px;
}

audio {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.song-info {
    margin-top: 10px;
    font-size: 1.2rem;
}

.playlist {
    margin-top: 20px;
}

.playlist ul {
    list-style-type: none;
}

.playlist li {
    padding: 10px;
    background-color: #505050;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.playlist li:hover {
    background-color: #808080;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    img {
        width: 300px;
        height: 300px;
    }
}
