* {
    font-family: "Poppins", sans-serif;
}

#myVideo {
    z-index: -1;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.navbar {
    z-index: 1000;
    background: rgba(0, 0, 0, 0.2) !important;
}

#videoOverLay {
    z-index: 0;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    opacity: 0.2;
    background-color: goldenrod;
    /* background: rgba(0, 0, 0, 0.3); */
}

/* customize navbar */
.customize_nav {
    height: 105px !important;
}

/* Add some content at the bottom of the video/page */
.content {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    color: #f1f1f1;
    width: 20%;
    left: 0;
    padding: 10px;
}

a {
    text-decoration: none !important;
}

.glow {
    font-size: 30px;
    color: #fff;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px gold,
            0 0 30px gold, 0 0 40px gold, 0 0 50px gold,
            0 0 60px ;
    }
    to {
        text-shadow: 0 0 10px #fff, 0 0 20px gold, 0 0 30px gold,
            0 0 40px gold, 0 0 50px gold, 0 0 60px gold,
            0 0 70px gold;
    }
}
