* {
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Acme', sans-serif;
    font-weight: lighter;
    word-spacing: 4px;
}


body {
    background-color: #b29d7b;
    color: #675a46;
}


nav {
    position: fixed;
    z-index: 5;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    width: 100%;
    background-color: #87775d;

    padding: 10px;
}

.navTitle {
    color: black;
}


a {
    text-decoration: none;
}

video {
    width: 300px;
}

audio {
    height: 30px;
    border-radius: 20px;
    border-bottom: 5px solid #87775d;
}


.trksDIV {
    position: absolute;
    top: 200px;
}

.backBtn {
    height: 40px;
}

.navBtnsDiv {
    /* padding: 8px; */
    width: 270px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: solid red 3px; */
}

.pauseALL {
    border-radius: 7px;
    border: 3px solid #c0a883;
    /* border-bottom: rgb(241, 109, 61) 4px solid; */
    border-bottom: rgb(255, 111, 0) 4px solid;
    padding-top: 3px;
}

.jpLnkIMG {
    height: 70px;
    border-radius: 10px;
    padding: 3px;
    background-color: #87775d;
}

.jpLnkIMG:hover {
    background-color: rgb(214, 142, 8);
    border-bottom: 4px solid green;    
}

.videoDiv {
    position: absolute;
    top: 170px;
}

.jpNAV {
    height: 90px;
    position: absolute;
    bottom: 0px;
    left: 70px;
}

/* ******************************************************************************************** */

@media only screen and (max-width: 800px) {


    nav {
        flex-direction: column;
        background-color: transparent;
        
    }

    .videoDiv {
        top: 270px;
        border-top: 2px solid #a48f6e;
    }

    .videoDiv {
        /* position: absolute;
        margin-left: auto;
        margin-right: auto;
        left: 0px;
        right: 0px; */
        width: 100%;
        /* border: solid 2px black; */
        text-align: center;

    }

    .jpNAV {
        display: none;
    }

}