
/*
-------------------------------------
BASE CLASSES
-------------------------------------
*/

*, *:before, *:after {
	box-sizing: border-box;
	/*perspective: 1000px;*/
}

* {
    -webkit-appearance: none;
}

html {
	font-family: "Poppins", Arial, Helvetica, sans-serif;
}

body {
	margin: 0; 
	padding: 0;
	min-width: 320px;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	outline: none;
	background-color: #3a14c4;
}

img, video {
	display: block;
	border: 0;
	width: 100%;
	max-width: 100%;
}

/*
-------------------------------------
CENTRE HOVER
-------------------------------------
*/

.cenabs {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 500;
}

.centab {
	display: table;
	width: 100%;
	height: 100%;

}

.cencell {
	display: table-cell;
	vertical-align: middle;
}

.cencontent {
	margin: 0 auto;
}
