html,
body {
    overflow-x: hidden;
    background: url('../img/bg3.jpg') 30% bottom no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    font-family: "EB Garamond", serif;
    color: white;
}

@media screen and (max-width: 600px) {
    #cd-title {
        position: absolute;
        bottom: 255px;
        right: -13px;
        transform: scale(1);
    }

    .song-meta {
        padding: 10px;
    }

    #album-title {
        background-color: rgba(0, 0, 0, .3);
    }

    #album-title>img {
        margin-top: -50px;
    }
}

@media screen and (min-width: 601px) {
    #cd-title {
        position: absolute;
        bottom: 53px;
        right: -117px;
        transform: scale(.7);
    }

    .song-meta {
        padding: 10px;
    }

    #album-title {
        margin-top: -70px;
        margin-bottom: -20px;
        width: 100%;
        height: 100%;
    }
}

.song-meta {
    margin: 0 auto;
    display: inline-block;
}

.dload-audio {
    display: block;
    color: black;
    text-decoration: none;
    margin: 20px auto;
    text-transform: uppercase;
    background-color: white;
    width: 250px;
    border-radius: 10px;
    transition-duration: .5s;
}

.dload-audio:hover {
    transform: scale(1.02);
}

audio {
    margin: 10px 0;
}