/* BASE */

*, *::after, *::before {
	box-sizing: border-box;
}

html {
	font-size: 18px;
}

body {
	font-family: sans-serif;
	color: white;
	background: #6D6875;
}

a {
	text-decoration: none;
}

/* TOOLTIP */

section {
	width: 100%;
	height: 100vh;
	display: table;
}

section .center {
display: table-cell;
vertical-align: middle;
text-align: center;
}
