img {
    border-radius: 30px;
    filter: drop-shadow(5px 10px 4px #96d4d4);
}

h1 {
    color: NAVY;
    text-align: center;
    text-shadow: 2px 2px 3px black;
    
    background-color: gray;
}
body{
    background-image: url('images.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
}

nav.no-bullet {
    padding: 20px;
    font-size: 50px;
    background-color: red;
    text-align: center;
    
    
}
.vertical-menu a{
    font-family:fantasy;
    font-size: 50px;
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
    text-shadow: 2px 2px 3px #66fbfb;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000000;
    background-color: black;
    border-radius: 10px;
    border: 3px solid#00bcd4;
    filter: drop-shadow(5px 5px 4px #96d4d4);
    transition:all 0.5s linear;
    padding: 1px;
}
a:hover{
    background-color: #7dfdfe;
    color: #072d91;
    transform: scale(1.05);
    
}

footer{
    width: 100%;
    color: navy;
    text-align: center;
    background-color: gray;
    padding: 10px;
    margin-top: 30px;
}
 Video {
        position: fixed;
        right: 0;
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        z-index:  -1;
      }
      audio{
        color: black;
        display: block;
        border: 2px solid#0ef8f8;
        border-radius: 50px;
        background-color: aqua;
        filter: drop-shadow(10px 10px 4px #7DFDFE);
        -webkit-text-fill-color: white;
        -webkit-text-stroke-width: .5px ;
        -webkit-text-stroke-color:rgb(0, 0, 0);
        -webkit-transition:all 0.5s linear;
        -moz-transition:all 0.5s linear;
        -o-transition:all 0.5s linear;
        transition:all 0.5s linear;
    }
    audio:hover, audio:focus, audio:active
    {
     
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
    }
    audio::-webkit-media-controls-play-button,
    audio::-webkit-media-controls-panel {
      background-color:#062474;
      color: #ee1313;
    }