@charset "UTF-8";
/* CSS Document */
/* You really don't need much for a nice looking site */

body {
	background: #000;

}
#header{
	text-align: center;
	margin-bottom: 30px;
}
.wrap { 
	margin: 0 auto;
	max-width: 700px;
}
h1, h2{
	font-family: 'Alegreya', serif;
	color:#FFF;
	-webkit-font-smoothing: antialiased;
	line-height: 1;
}
h1{
	letter-spacing: -2px;
	font-size: 120px;
}

p {
	font-family: 'Alegreya', serif;
	letter-spacing: .01rem;
	font-weight: 400;
	font-style: normal;
	font-size: 22px;
	line-height: 1.5;
	color:#FFF;
	-webkit-font-smoothing: antialiased;
}
a, a:hover, a:visited {
	text-decoration:none;
	color:#FFF;
	-webkit-font-smoothing: antialiased;
}

.blindlink{cursor:text;}
.show-link{
	text-decoration: underline;
	color: #2e5eee; /* blue */
}

#content{
	display: flex;
	justify-content: center;
}



@media only screen and (max-device-width: 480px){
	
	.wrap {margin: 0 5%;}
	h1{letter-spacing: -7px;}
	p{font-size: 2rem;}
	

}		