html, body {
	margin: 0;
	padding: 0;
	font-family: "Carrois Gothic SC", "Courier New", monospace;
}

h1 {
	margin-bottom: 0;
	margin-top: 0;
}

q:before, q:after {
	content: "";
} /* Removes browser-generated quotes around <q> element */

#intro {
	color: #fcffff;
	background: url("images/shoreline_image.jpg") no-repeat center center fixed;
	background-size: cover;
	height: 100vh; /* 100% of the height of the viewport */
	transition: transform 0.6s ease-in-out;
}

#intro h1 {
	font-size: 100px;
	letter-spacing: 5px;
}

#intro h2 {
	margin-left: 19%;
	margin-top: 0;
	font-size: 24px;
	letter-spacing: 0.2em;
}

#intro p {
	margin-left: 10%;
}

blockquote {
	margin-top: 30px;
	width: 20%;
	font-size: 20px;
}

#down_arrow {
	border-right: 4px solid white;
	border-bottom: 4px solid white;
	width: 20px;
	height: 20px;
	transform: rotate(45deg);
	margin: 12px auto 0 auto;
}

#circle {
	border: 3px solid white;
	border-radius: 50%;
	width: 55px;
	height: 55px;
	margin: 100px auto 0 auto;
}

.project {
	width: 180px;
	height: 180px;
	border: 1px solid black;
	display: inline-block;
	background: #dedede;
	line-height: 175px;
	opacity: 0.5;
	transition: opacity 0.5s, box-shadow 0.5s;
}

.project p {
	display: inline-block;
	line-height: 25px;
	vertical-align: middle;
}

.form {
	width: 180px;
	height: 90px;
	border: 1px solid black;
	display: inline-block;
	background: #dedede;
	line-height: 85px;
	margin-bottom: 5px;
	opacity: 0.5;
	transition: opacity 0.5s, box-shadow 0.5s;
} /* Height + line height here & on <p> inside (below) allows boxes to align
     vertically despite some containing multiline next & some single-line */

.project:hover, .form:hover {
	opacity: 1;
	box-shadow: 0px 10px 50px #406d91;
}

.form p {
	display: inline-block;
	line-height: 24px;
	vertical-align: middle;
}

#workheader .form p {
	position: relative;
	top: 7px;
}

.form_container {
	width: 750px;
	margin: auto;
	margin-top: 20px;
}

#workheader {
	margin: 0 auto;
	text-align: center;
	vertical-align: middle;
	background: url("images/monochrome.jpg") no-repeat center center fixed;
	background-size: cover;
	height: 100vh;
	transition: transform 0.6s ease-in-out;
}

#workheader h1 {
	font-size: 80px;
	letter-spacing: 0.1em;
}

#workheader p {
	font-size: 26px;
	margin-top: 13px;
}

a {
	text-decoration: none;
	color: red;
}

img {
	position: fixed;
	bottom: 0;
	right: 0;
	margin-right: 20px;
	margin-bottom: 20px;
	width: 60px;
	opacity: 0.8;
}