* {
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Acme', sans-serif;
}
    

body {
    display: flex;
    justify-content: center;
    background-color: orange;
}

nav {
    position: fixed;
    z-index: 5;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    background-color: rgb(192, 192, 192, 0.9);
    padding: 10px;
}


a {
    text-decoration: none;
}


.trksDIV {
    position: absolute;
    top: 200px;
    background-image: url('https://media.giphy.com/media/YGTeVSp7lVxHG/giphy.gif');
    background-size: 100%;
    background-repeat: no-repeat;
    /* background-color: #f1f3f4; */
    height: 340px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    overflow: hidden;
    border: solid 2px #f1f3f4;
}

.paACtrl {
    background-color: #f1f3f4;
    border: 2px red;
}

/* ******************************************************************************************** */

@media only screen and (max-width: 800px) {

    /* .titleNAV {
        position: fixed;
        top: 60px;
        left: 35px;
    } */

    nav {

    }

}