*{
	font-family: 	'Roboto', sans-serif;
	margin: 		0px;
	padding: 		0px;
}
body{
	display: 			flex;
	overflow: 			hidden;
	flex-direction: 	column;
	justify-content: 	center;
	align-items: 		center;
	background: 		#171717;
	color: 				#fff;
	height: 			100%;
}
a{
	color: 				inherit;
	text-decoration: 	none;
}
#logoContainer{
	display: 			flex;
	overflow: 			hidden;
	flex-direction: 	column;
	justify-content: 	center;
	align-items: 		center;
	position: 			relative;
}
#logo{
	animation: 	rotate 20s infinite linear;
}
#name{
	position: 	absolute;
	font-size: 	35px;
}
@keyframes rotate{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(-360deg);
	}
}