body {
    background-color: darkgreen;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(to right, purple, rgb(43, 0, 48));
    color: white;
    text-align: center;
    padding: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: yellow;
    text-decoration: none;
    font-weight: bold;
}

.container {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.profile-box {
    background-color: white;
    padding: 15px;
    border: 3px solid black;
    text-align: center;
    width: 200px;
}

.profile-box img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.content {
    background-color: white;
    padding: 20px;
    border: 3px solid black;
    flex-grow: 1;
}

.link-box {
    margin-top: 20px;
}

.musicPlayer {
    position: fixed;              /* stays in place while scrolling */
    top: 70%;                    /* distance from the top of the page */
    left: 20px;                  /* distance from the left edge of the page */
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid black;
    border-radius: 5px;
    width: 320px;
    padding: 10px;
    margin: 20px auto;
    text-align: center;
    color: black;
    cursor: move;                   /* indicates that the element can be dragged */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7); /* adds a shadow for better visibility */
    z-index: 1000;                   /* ensures the music player stays on top of other elements */
    user-select: none;              /* prevents text selection while dragging */
    -webkit-user-select: none;          /* for Safari */
    -moz-user-select: none;             /* for Firefox */
    -ms-user-select: none;              /* for Internet Explorer/Edge */
}

.musicPlayer audio {
    width: 100%;
    margin-top: 5px;
}

footer {
    background-color: rgba(0, 0, 0, 0.25);
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}