* {
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Acme', sans-serif;
}
    

body {
    background-color: black;
    color: silver;
}

nav {
    position: fixed;
    z-index: 5;
    top: 0px;
    left: 0px;
    display: flex;
    color: black;
    align-items: center;
    height: 100px;
    width: 100%;
    background-color: rgb(192, 192, 192, 0.9);
    padding: 10px;
}


a {
    text-decoration: none;
}


.trksDIV {
    position: absolute;
    top: 200px;
}

.homeBtns {
    margin-right: 50px;
}

.plDIV {
    background-image: url('https://t2.genius.com/unsafe/808x0/https%3A%2F%2Fimages.genius.com%2F041405e7b854e6497c3a7b5ad768c920.1000x1000x1.jpg');
    background-size: 100%;
    /* background-size: cover; */
    background-repeat: no-repeat;
    /* background-position-y: -120px; */
    width: 300px;
    height: 325px;
    border: #333333 solid 2px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.plACtrl {
    background-color: #f1f3f4;
}

#backMblID {
    display: none;
}
/* ******************************************************************************************** */

@media only screen and (max-width: 800px) {

    .titleNAV {
        position: fixed;
        top: 60px;
        left: 60px;
    }

    #backMblID {
        display: block;
    }
    
    .backMbl {
        position: fixed;
        bottom: 5px;
        right: 5px;
        height: 30px;
        background-color: #333333;
        border-radius: 40px;
        border: solid 2px #333333;
        height: 50px;    
    }

}


