/* 
Nathaniel's CSS. For https://redsie.co.uk/nate only.
*/
/*
Define custom fonts
*/
@font-face {
	font-family: ubuntu;
	src: url(Ubuntu-R.woff);
	font-weight: normal;
}
@font-face {
	font-family: chicago;
	src: url(Chicago.woff);
	font-weight: normal;
}
/*
Define properties for tags
*/
body, html {
	background-color: #808080;
	height: 100%;
    	margin: 0;
	color: white;
}
p{
	margin: 5px;
	font-family: 'ubuntu';
}
i {
	font-family: 'ubuntu';
}
h1, h2, h3, h4, h5 {
	font-family: 'ubuntu';
}
a {
	color: GoldenRod;
	text-decoration: none;
	font-family: 'ubuntu';
}
a:hover {
	opacity: 30%
}
a:visited {
	color: DarkGray;
}
span {
	font-family: 'ubuntu';
}
button {
	color: white; /*why doesn't this take the color tag from the body?*/
	background-color: #454545;
	font-family: "ubuntu";
	font-size: 1em;
	text-align: center;
	padding: 5px 15px;
	border: 1px solid #ffffff;
	margin-top: 5px;
	margin-left: 5px;
	cursor: pointer;
}
figure {
	float: right;
	border: 5px solid white;
	display: table;
	padding-bottom: 5px;
	margin-right: 10px
}
figcaption {
    display: table-row;
	text-align: center;
}
/*
Define properties for things with custom ID's and classes
*/
#pageTitle {
	font-size: 36px;
	font-family: 'chicago';
}
#welcomeText {
	font-size: 48px;
}
#downloadButton:hover {
	background-color: #454545;
	cursor: pointer;
}
#homepageParagraph {
	font-size: 32px;
}
#link:visited {
	color: goldenrod;
}
#gameimg {
	float: right;
}
#home #homenav, #files #filesnav, #guides #guidesnav, #videos #videosnav, #filedump #filedumpnav {
	color: DarkGrey
}
#indexlist { /*Apache's automatic table listing for the filedump*/
	width: 100%;
	text-align: left;
}
#subtitle, #ref1 { /*Designed best to go with Heading 2 <h2>*/
	margin-top: -1.5%;
}
/*	The classes start here	*/
.disabled {
  opacity: 0.5;
  cursor: not-allowed; /*haha funny no symbol*/
}
.flex-container {
	display: flex;
	flex-flow: column;
	height: 100%;
}
.flex-container .layout {
	flex: 1;
	background-color: #454545;
	box-shadow: 0 0 5px 10px #454545;
	color: white;
	width: 1000px; /*This makes the content bigger*/
	margin: auto;
}
.links {
	/*padding-bottom: 10px;*/
	padding-left: 15px;
	font-size: 36px;
	margin-left: -10px;
	margin-right: -10px;
	
}
.links a:visited {
	color: GoldenRod;
}
