:root {
    --vovBlue: #00b6ff;
    --vovBlack: #000000;
    --vovWhite: #ffffff;

}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


header{
    background-color: var(--vovBlack);
}
header img{
    width: 150px;
    height: 110px;
    padding-left: 20px;
    padding-top: 20px;
}
header h3{
    color: var(--vovWhite);
}

li{
    background-color: var(--vovBlue);
}


footer {
    background-color: black;
}


@media only screen and (min-width: 600px) and (max-width: 991px){
    

    footer {
        background-color: black;
    }

}

@media only screen and (min-width: 992px){

    .wrapper {
        height: 80vh;
        overflow-x: hidden;
        overflow-y: auto;
        perspective: 2px;
    }
    
    .section {
        position: relative;
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: bisque;
        text-shadow: 0 0 5px #000;
    }
    
    img{
        height: 7em;
        width: 100%;
        
    }
    
    nav{
       
    }

    nav .nav-main li{
        display: inline-block;
        list-style: none;
        padding: 0 20px;
    }
    
    .parallax::after {
        content: " ";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        transform: translateZ(-1px) scale(1.5);
        background-size: 60%;
        z-index: -1;
    }
    
    .static {
        background: rgb(20, 54, 82);
    }
    
    .area1::after {
        
    }
    
    .area2::after{
        
    }
    
    .area3::after{
        
    }

    footer {
        background-color: black;
        color: white;
        font-size: 1em;
    }




}