
body{
	background-color: hsl(200, 100%, 30%);
}

h1{
	border: 4px solid red;
/*	height: 300px; */
/*	line-height: 280px; */
	text-align: right;
	/* text-indent only indents from the left */
	/*text-indent: -5vw;*/
	/* top right bottom left */
	padding: 90px 48px 90px;
	/* top-bottom left-right */
	margin: 16px 0px;
	position: relative; /* important */
	

/* background image declarations */
	background-image: url(../images/steam_profile.jpg);
	background-size: cover;
	/* x y */
	/* 50% = centered */
	background-position: 50% 58%;
}

h1 > span{
	background-color: hsla(200, 100%, 100%, .6);
/*	display: block; /* make this inline span behave like block */
	padding-left: -10px;
	padding-top: 4px;
	padding-bottom: 4px;
/*	text-shadow: 2px 1px 6px #CCC;*/
}

.home img{
	border: 4px solid transparent;
	height: 110%;
	border-radius: 50%;
}

h1 > a{
	position: absolute;
	border: 2px solid transparent;
	background-color: #EEE;
	display: block;
	width: 34px; height: 34px;
	width: fit-content;
	bottom: 8px; right: 224px;
	display: block;
	border-radius: 50%;
	transition: all .7s;
}

/* the first section element within a parent */
section:nth-child(1){
	border: 4px solid orange;
	margin: 10px;
	min-height: 200px;
}

div.mainlink{
	width: 60px; height: 60px;
	margin: 50px auto;
	border: 0px solid white;
}

div.mainlink a{
	border: 4px solid #234;
	background-color: #EEE;
	display: block;
	width: 100%; height: 100%;
	border-radius: 50%;
	transition: all .7s;
}

div.mainlink img{
	display: block;
	width: 80%; height: 80%;
	margin: 0px auto;
	padding-top: 8px;
}

div.mainlink a:hover{
	background-color: #FF9;
	border: 4px solid #567;
	outline: 4px solid #EEE;
}

section:nth-child(2){
	border: 4px solid skyblue;
	margin: 10px;
	min-height: 500px;
	background-image: url(../images/mindblown.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

section:nth-child(3){
	border: 4px solid transparent;
	margin: 10px;
	min-height: 700px;
	background-image: url(../images/trees-silhouette-white.png), url(../images/medieval.jpg);
	background-size: 100%, 115%;
	background-repeat: no-repeat, no-repeat;
	background-attachment: scroll, fixed;
}

section:nth-child(4){
	border: 4px solid transparent;
	margin: 10px;
	min-height: 500px;
	background-image: url(../images/medieval2.jpg);
	background-size: cover;
	background-attachment: fixed;
}

section:nth-child(5){
	border: 4px solid transparent;
	margin: 10px;
	min-height: 500px;
	background-image: linear-gradient(to right, hsla(5, 100%, 50%, .6), white),
					  linear-gradient(to left, hsla(200, 100%, 30%, .6), pink);
}