body {
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;

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

	background-color: #001b2f;
}

body * {
	padding: 0;
	margin: 0;
}

.content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 32px;
	background-color: #fff4;
}

h1, h2 {
	font-family: 'Tahoma', Arial;
	font-size: 1.5em;
    line-height: 1.19em;
	font-weight: normal;
	text-align: center;
	color: #fff;
	margin-bottom: 16px;
}

.content *:last-child {
	margin-bottom: 0;
}

.content a {
	position: relative;
	padding: 2px;
	text-decoration: none;
	color: #ff2c2c;
}

.content a:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #ff2c2c;
	transition: width .3s ease-in-out;
}

.content a:hover:before {
	width: 100%;
}

#particles-js {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}

@media (max-width: 900px) {
	.content h2 {
		display: flex;
		flex-direction: column;
	}
}
