/* Fixed Navigation Bar */
.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #49495C; /*Change this value to change the color of the logo/artist name*/
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #DFDEF7; /*Change this value to change the background color of the navigation bar*/
    box-shadow: 0 2px 10px #0000001A;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #64617A; /*Change this value to change the color of the navigation bar element texts*/
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #A099D7; /*Change this value to change the color when a link is highlighted*/
}