body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #5288a7; 
    color: #d9d4bb;
}

.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 18%;
    background-color: #456f88; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    padding-bottom: 70px;
}

.logo {
    width: 80%;
    margin-bottom: 300px;
    align-self: flex-start;
}

nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 130px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

nav ul li {
    margin-bottom: 20px;
}

nav ul li a {
    color: #e4e2d7;
    text-decoration: none;
    font-size: 3rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
}

.social-icons {
    margin-top: 20px; /* Space between the navigation and icons */
    display: flex;
    justify-content: flex-start;
    gap: 15px; /* Space between icons */
}

.social-icons a img {
    width: 25px; /* Size of the icons */
    height: 25px;
    transition: transform 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
}

.main-content {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center the content vertically */
    text-align: center; /* Center the text horizontally */
    position: relative;
}

.album-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.album-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.album-art {
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
}

.song-list {
    width: 100%;
    max-width: 500px; /* Match the width of the album box */
}

.song-list ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    font-size: 1rem; /* Even smaller font size */
    color: #d9d4bb;
    text-align: center;
}

.song-list ul li {
    margin-bottom: 5px; /* Reduced margin between songs */
}

.song-list ul li:first-child {
    font-style: italic; 
}

footer {
    background-color: #17273d;
    padding: 1px 0;
    text-align: center;
    color: #d9d4bb;
    font-weight: normal;
    position: absolute;
    bottom: 0;
    width: 100%;
}
