
html, body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	font-family: InterUI, Roboto, sans;
	background-color: #111116;
}

#container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.boxes {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3em;
	width: 500px;
	height: 500px;
}

.boxes span {
	color: #FF1461;
	padding: 20px;
	margin: 20px;
	font-weight: 700;
	text-transform: capitalize;
	text-shadow: black 2px 2px;
	-webkit-box-shadow: 5px 2px 0px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 5px 2px 0px 0px rgba(0,0,0,0.75);
	box-shadow: 5px 2px 0px 0px rgba(0,0,0,0.75);
}

.boxes span:hover {
	transform: scale(1.5);
	transition: transform 0.5s ease-out;
}

.boxes span:hover:before {
	content: "hello";
}
