html, body {
  margin: 0;
  padding: 0;
  background-color: #EFEFEF;
  font-family: 'Roboto', sans-serif;
}

canvas {
  display: block;
}

.Container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
}

.TextContainer {
	position: absolute;
	display: grid;
	justify-content: center;
	align-items: flex-end;
	margin: auto;
	width: 100vw;
	height: 55vh;
	font-weight: 300;
	font-size: 1.1rem;
}

.TextBox {
	width: 100%;
	text-align: center;
}

.Text {
	margin-bottom: 0.5rem;
	font-size: 1.0rem;
}

.TextTitle {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

a:link {
	color: #555555;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
};


a:visited {
	color: #555555;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
};

a:active {
	color: #555555;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
};

@media only screen and (max-width: 760px) {
  #textContainer { font-size: 2rem; }
}