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

body {
    text-align: center;
    margin: 0px;
    
}

a {
    text-decoration: none;
}

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

video {
    border-radius: 15px;
}

.scrpt {
    color: silver;
    background-color: black;   
    width: 600px; 
    margin: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 6px;
    padding-bottom: 10px;
}

.book {
    color: rgb(77, 75, 75);
}

.verse {
    color: #ffcc00;
    font-size: 25px;
}

iframe {
    /* width="900" height="506" */
    width: 600px;
    border-radius: 20px;
}

/* *****  MEDIA QUERY  *************************************************************************** */
@media only screen and (max-width: 600px) {
    video, .videoDIV, iframe {
        width: 100%;
        border-radius: 0px;
    }

    .navLS {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        border: solid gray .5px;
        padding: 3px;
        border-radius: 5px;
        background-color: #e1e1e1;

    }
    
}