html,body { 
  line-height: 1.5; 
  background: #0a0a0a; 
  margin:0; 
  font-family: Montserrat;
  color: white;
  font-size: 20px;
  height:100%;
  width:100%;
  overflow-x: hidden;
}

.content {
	height:100%;
	width:100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
img{
	max-width: 100%;
	margin: 8px 0;
}
h1 {
	font-size:36px;
	margin: 0;
}
h2 {
	margin: 0;
	font-size:24px;
}
p {
	padding: 0 15px;
	margin: 4px 0;
}

a {
	font-size: 20px;
	color: #03DAC5;
	text-decoration: none;
	padding: 5px;
	background:
	linear-gradient(
	  to bottom, #fff 0%,
	  #fff 100%
	);
	background-position: 0 100%;
	background-repeat: repeat-x;
	background-size: 4px 1px;
	text-decoration: none;
	transition: background-size .3s;
}
a:hover { 
	background-size: 4px 50px;
}
a:visited {
	color: #03DAC5;
}
