@import url(../assets/fonts/fonts.css);
html{
	background: url(../assets/images/InitialBackground.webp) center center no-repeat fixed ;
	background-size: cover;
	box-sizing: content-box;
	height: 100%;
	backdrop-filter: blur(15px);
	overflow: hidden;
}
html::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../assets/images/InitialBackground.webp) center center no-repeat fixed;
    background-size: cover;
    filter: blur(10px);
    z-index: -1;
}
div.fadeIn{
	height: 100vh;
	width: 100vw;
	background-color: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	animation: fadeIn .6s ease-out;
}
@keyframes fadeIn {
	0%{
		opacity: 0;
	}
}
body{
	display: flex;
	height: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 0;
}
img.phigrosLogo{
	height: 20%;
	width: auto;
	max-width: 80%;
	object-fit: scale-down;
}
div.tapToStart{
	margin: 30px;
	color: #fff;
}

canvas#bubbles {
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}