/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
    color: #6BFF99; /* Change non-link text color */
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    background-image: url('background.jpg'); /* Replace 'your-image.jpg' with the path to your image */
    background-size: cover; /* Cover the entire viewport */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-attachment: fixed; /* Keep the image fixed while scrolling */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

header {
    background-color: rgba(3, 22, 48, .9); /* Slightly transparent header */
    color: #fff;
    padding: 20px;
    border: 2px solid #000; /* 2px wide black border */
    border-radius: 10px; /* Rounded corners */
    margin-bottom: 20px; /* Add some space below the header */
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #05FF42;
    text-decoration: none;
}

section {
    padding: 40px;
    background-color: rgba(3, 22, 48, 0.9); /* Slightly transparent sections */
    margin: 0 auto 20px;
    max-width: 800px;
    border: 2px solid #000; /* 2px wide black border */
    border-radius: 10px; /* Rounded corners */
}

/* Stylish buttons */
.button {
    background-color: #031630; /* Change button background color */
    color: #fff; /* Change button text color */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    background-color: #00C853;
}

/* CSS for the album layout */
.album {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.album-cover {
    flex: 1;
    margin-right: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); /* Add a slight shadow to album covers */
}

.album-info {
    flex: 3;
    text-align: center;
}

.album img {
    max-width: 100%;
    transition: transform 0.2s;
}

.album img:hover {
    transform: scale(1.05);
}

#music-player {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    color: #fff;
    padding: 10px;
}

#player-controls {
    display: flex;
    align-items: center;
}

/* Footer styling */
footer {
    background-color: rgba(0, 0, 0, 0.9); /* Slightly transparent footer */
    color: #fff;
    padding: 20px;
    border: 2px solid #000; /* 2px wide black border */
    border-radius: 10px; /* Rounded corners */
}

/* Animation keyframes for fadeIn */
@keyframes fadeIn {
    0% {
        transform: translateX(-100%); /* Start from the left */
        opacity: 0;
    }
    100% {
        transform: translateX(0); /* Fade in to the center */
        opacity: 1;
    }
}
