html
{
    background-color: black;
    /* cursor: none; */
    overflow: hidden;
}

html, body
{
    padding: 0;
    margin: 0;
}

@keyframes interlaceAnimation {
    0% { 
        background-size: 100% 100%;
        background-position: center center;
    }
    
    20% { 
        background-size: 120% 120%;
        background-position: center center;
    }
    
    
    40% { 
        background-size: 125% 125%;
        background-position: left center;
    }
    
    
    50% { 
        background-size: 120% 120%;
        background-position: center center;
    }
    
    60% { 
        background-size: 130% 130%;
        background-position: center middle;
    }

    65% { 
        background-size: 120% 120%;
        background-position: center center;
    }
    
    
    70% { 
        background-size: 150% 150%;
        background-position: center center;
    }
    
    
    80% { 
        background-size: 140% 140%;
        background-position: center center;
    }
    
    
    90% { 
        background-size: 135% 135%;
        background-position: left center;
    }
    
    100% { 
        background-size: 100% 100%;
        background-position: center center;
    }
}


.interlace
{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: url('../images/interlace.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    animation-timing-function: ease-in-out;
    animation-name: interlaceAnimation;
    animation-duration: 30s;
    animation-iteration-count: infinite;

}

.frame
{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: url('../images/frame.png');
    background-repeat: no-repeat;
    /* background-size: 100% 100%; */
    background-size: 100% 100%;
}


/* .interlace
{
    display: none;
} */

@media screen and (max-width: 767px)
{
    .frame
    {
        display: none;
    }

    /* .interlace
    {
        display: block;
    } */
}

@media screen and (orientation:portrait) {
    .frame
    {
        display: none;
    }

    .interlace
    {
        display: block;
    }
}

.green-overlay
{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.7;
    background: rgb(110,125,118);
    background: linear-gradient(180deg, rgba(110,125,118,1) 0%, rgba(144,155,149,1) 100%);
} 


.green-overlay:after
{
    content: '';
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.9;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.4) 0%, #395e50 60%, black 100%);
        
} 

/* .radial-black
{
    content: '';
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 90%, rgba(0,0,0,1) 100%);
}  */