* {
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Acme', sans-serif;
}

body {
    /*background-color: gray;*/
    background-color: black;
    margin: 0px;
    display: flex;
    justify-content: center;
}

a {
    text-decoration: none;
}


.title {
    background-color: black;
    color: silver;
    border: solid 2px gold;
    border-bottom: 5px solid gold;
    border-radius: 10px;
    /* margin-left: 50px; */
    font-size: 30px;

}



nav {
    position: fixed;
    top: 0px;
    height: 100px;
    background-color: #4f0505;
    /*background-color: red;*/
    width: 100%;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navL {
    display: flex;
    justify-content: space-between;
    width: 270px;
    align-items: center;
    padding: 20px;
}


.vidCont {
    position: absolute;
    top: 160px;
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    border: rgb(53, 52, 52) solid 2px;
    text-align: center;
    border-radius: 10px;
    background-color: black;
    color: silver;
    overflow: hidden;

}

.vids {
    height: 210px;
    width: 400px;
}

.AlphaOmega {
    height: 100%;
}

.AlphaOmega:hover {
    border-radius: 20px;
    height: 90px;
    border: gold solid 5px;
}


/* ******************************************************************************************** */

@media only screen and (max-width: 800px) {

    nav {
        flex-direction: column;
        /* justify-content: center; */
        /* align-items: center; */
        /* text-align: center; */
        height: auto;
        width: 100%;
    }

    .AlphaOmega {
        width: 100%;
        height: auto;

    }

}