
@keyframes show{
	0%{
		opacity:0;

	}
	100%{
		opacity:1;

	}
}


#global.hide{
	animation: show 0.1s ease-in forwards;
}
#global{
	opacity:0;
}
html, body {

    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
     
    
}
body {


	mask-image: url("./landing_mask.webp");
	mask-size:100% 100%;
	mask-repeat:no-repeat;
	mask-mode:alpha;
	mask-position:center bottom;

}

#win {

	width:100%;
	height:100%;
    z-index:2;
    position:absolute;


}

