* {
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Acme', sans-serif;
}

body {
    background-image: url('images/cover.jpg');
    background-repeat: no-repeat;
    background-position-x: center;
    background-attachment: fixed;
}

nav {
    /* display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; */

    position: fixed;
    z-index: 5;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    height: 100px;
    width: 100%;
    background-color: rgb(0,0,0,0.3);
    padding: 10px;
}

.trksDIV {
    position: absolute;
    top: 200px;
}

.albCvrSM {
    display: none;
    border-bottom-left-radius: 15px;
}

/* .albCvrLG {
    position: fixed;
    z-index: 1;
    top: 80px;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
} */

audio {
    position: relative;
    z-index: 3;

}

/* MEDIA QUERY *************************************************************************************************** */
@media only screen and (max-width: 600px) {

    body {
        background-image: url('');
        background-color: black;
        color: silver;
    }
    
    nav {
        background-color: rgb(0,0,0,0.8);
    }

    .albCvrSM {
        display: block;
        position: fixed;
        top: 0px;
        right: 0px;
        height: 120px;    
    }

    .albCvrLG {
        display: none
    }



}



/* MEDIA QUERY  (VERT)*************************************************************************************************** */
@media only screen and (max-height: 400px) {

    body {
        background-image: url('');
        background-color: black;
        color: silver;
    }
    
    nav {
        background-color: rgb(0,0,0,0.8);
    }
    
    .albCvrSM {
        display: block;
        position: fixed;
        top: 0px;
        right: 0px;
        height: 120px;
    
    }

    .albCvrLG {
        display: none
    }



}
