body {
    margin: 0;
    padding: 0;
    background-image: url('https://s3.amazonaws.com/anneother.ca/playlistradio/plr11.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.topnav {
    background-color: transparent;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    transition: background-color 0.3s;
}

.topnav a {
    float: left;
    color: #000000;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #04AA6D;
    color: white;
}


/*** artist bio ***///
.artist-bio {
    padding: 50px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bio-content {
    flex: 1;
    padding-right: 50px;
}

.bio-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.bio-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.bio-image {
    flex: 1;
    text-align: right;
}

.bio-image img {
    max-width: 800px;
    height: auto;
}

@media screen and (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .bio-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .bio-image {
        text-align: center;
    }
}

.topnav-right {
    float: right;
}

@media screen and (max-width: 600px) {
    .topnav a, .topnav-right {
        float: none;
        display: block;
        text-align: left;
    }
}