/*
* Fluids
*/
.next-fluids{
	position: relative;

	width: 100vw; /**/
	height: 100vh; /**/

	background-color: #000; /**/

	pointer-events: none;
}
.next-fluids__canvas {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
}
.next-fluids__content{
	position: relative;
	z-index: 1;

    width: 100%;
	height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

	color: white;
    pointer-events: none;
}
.next-fluids__content > * {
    pointer-events: auto;
}