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

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

.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: cover;
}

.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%);
}  */