body {
	background: url(bg6.png) no-repeat center center fixed; 
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;

	font-family: "Courier New";

	overflow: hidden;
}

#content {
	display: flex;
	flex-direction: column;

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

	height: 100vh;
}

#center-text {
	text-align: center;
	line-height: 8px;

	width: 300px;
	height: 150px;

	-moz-box-shadow: inset 0 0 7px black;
	-webkit-box-shadow: inset 0 0 7px black;
	box-shadow: inset 0 0 7px black;

	color: hsl(0, 0%, 95%);
	opacity: 0.65;
	background-color: hsl(0, 0%, 20%);

	/* margin: auto;
	top: -5%; left: 0; right: 0;	bottom: 0;
	position: absolute; */

	border-radius: 3px;
}

#center-text p:nth-child(1) {
	padding-top: 2.5%;
}

a {
	color: hsl(0, 0%, 95%);
	text-decoration: none;
}

#center-text a:hover {
	color: hsl(0, 0%, 70%);
}


#links {
	color: hsl(0, 0%, 95%);
	text-decoration: none;
	user-select: none;
	
	margin-top: 20px;
}

#links a:hover {
	color: hsl(0, 0%, 85%);
}

#links:hover {
	cursor: pointer;
}

#links:hover #projects {
	text-decoration: underline;
}

#links #arrow {
	position: absolute;
	line-height: 14px;
	font-size: 24px;

	margin-left: 10px;

	visibility: hidden;
}

#links:hover #arrow {
	visibility: visible;
}