/*
Name: Kyler Sakumoto
Date: 05/04/18
Section: CSE 154 AJ

This is the CSS file that defines styling for the index.html page for CP5.
*/

@import url('https://fonts.googleapis.com/css?family=Raleway:300,800');

body {
	margin: 50px;

	background:
		radial-gradient(ellipse at top right, transparent 50%, rgba(255, 255, 255, 0.4)),
		linear-gradient(to right, #00998c 0%, #004666 45%, #6b005f);
	background-attachment: fixed;
	background-repeat: no-repeat;

	font-family: "Raleway", sans-serif;
	font-weight: 300;
}

header {
	margin-bottom: 20px;
}

section {
	margin-top: 40px;
}

header, section {
	background-color: rgba(255, 255, 255, 0.4);
}

.hidden {
	display: none;
}

#desc-title {
	font-weight: bold;
}

#opening-crawl {
	color: yellow;
	background-color: rgba(0, 0, 0, 0.8);
}

header, section, #opening-crawl {
	padding: 25px;
	text-align: center;
}

footer {
	float: right;
}
