body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.star-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('starry.gif'); /* Placeholder for starry background */
    background-repeat: repeat;
    opacity: 0.5;
    z-index: -1;
}

header {
    background: rgba(30, 30, 30, 0.9);
    color: #e0e0e0;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 10px 0 20px 0;
}

button {
    padding: 10px 30px;
    color: #21ebff;
    background: black;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    transition: 0.5s;
}

button:hover {
    background: #21ebff;
    color: #111;
    box-shadow: 0 0 50px #21ebff;
}

nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100%;
    background: rgba(50, 50, 50, 0.9);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 20px;
}

nav.visible {
    right: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 60px;
}

nav ul li {
    margin: 15px 0;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

nav ul li a:hover {
    color: #ff00ff;
    transform: translateX(5px);
}

main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section {
    max-width: 600px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(50, 50, 50, 0.9);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* New styles for the music links */
ul {
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

ul li {
    margin: 10px 0; /* Adjust the margin for spacing between links */
}

ul li a {
    display: inline-block; /* Make links behave like buttons */
    padding: 10px 20px; /* Add padding to make links look like buttons */
    background: black; /* Background color for links */
    color: #ffffff; /* Text color */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    transition: background 0.3s, color 0.3s; /* Transition for hover effect */
}

ul li a:hover {
    background: pink; /* Change background to pink on hover */
    color: #ffffff; /* Keep text color */
}

footer {
    background: rgba(30, 30, 30, 0.9);
    color: #e0e0e0;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}
