@charset "UTF-8";
/*Ey it's ya girl Ylime thanks for checking out my source CSS, feel free to steal my shiznit I kinda stole most of it anyways also please watch Generator Rex*/
/*Custom fonts*/
@font-face {
	font-family: titleFont;
	src: url(../fonts/titleFont.ttf);
}
@font-face {
	font-family: nameFont;
	src: url(../fonts/nameFont.ttf);
}
/*General stylings*/
* {
	box-sizing: border-box;
	position: relative;
	margin: 0;
	padding: 0;
}
html, body {
	width: 100%;
	min-height: 100%;
	height: auto;
}
body {
	font-family: Verdana, sans-serif;
	font-size: 100%;
	color: black;
	margin: 0;
	padding: 0;
	z-index: 0;
	background-color: #0E031A;
	background-image: url(../images/background.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	overflow-x: hidden;
}
header, nav, section, article, figure, figcaption, aside, footer { /*Ensures that older browsers display these tags correctly*/
	display: block;
}
#nameBox { /*Galaxy name thing that shows up at the beginning*/
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	padding: 0px .5em;
	z-index: 10;
	background-image: url(../images/background2.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #0E031A;
	color: #BC91E6;
	font-family: nameFont;
	font-size: 15vh;
	line-height: 1.5em;
	text-align: center;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
#blackBox { /*Black box for fading out of website*/
	position: fixed;
	width: 0;
	height: 0;
	top: 0;
	left: 0;
	z-index: 10;
	opacity: 0;
	background-color: #0E031A; /*Okay so the box isn't actually black let me live my life*/
}
.title { /*The titles for my sections*/
	margin:5px 5px 10px 5px;
	background-color:#291040;
	color: #F0E0FF;
	text-shadow: 0 0 2px #F0E0FF;
	border-radius:7px;
	text-align: center;
	font-size: 3.5em;
	font-family: titleFont;
}
.oneHundred {/*Div that keeps the intro section centered*/
	width: 100%;
	height: auto;
	min-height: 100vh;
	padding: 5px;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-content: center;
}
.flex { /*Div that surrounds the nine smaller sections*/
	width: 100%;
	max-width: 980px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	vertical-align: middle;
}
section { /*Smaller section stylings*/
	width: 31.8%;
	height: auto;
	min-height: 50vh;
	margin: 5px;
	background-color: #A88FBF;
	border-radius: 10px;
	box-shadow:0 0 10px #A88FBF;
}
#section0 { /*Intro section styling*/
	width: 66.6vw;
	max-width: 980px;
	margin: auto;
}
figure { /*Centers the images*/
	width: 100%;
	text-align: center;
}
img { /*Stylings for the images*/
	width: 66%;
	max-width: 250px;
	height: auto;
	border-radius: 50%;
	box-shadow: 0 0 1px 1px #291040;
	cursor: pointer;
}
#section0 img { /*Removes the "click me!" cursor from the intro image*/
	cursor: initial;
}
figcaption { /*Makes caption small*/
	font-size: .75em;
	padding: 5px 5px 0 5px;
}
p { /*Text styling*/
	margin: .5em 0;
	padding: .5em;
	line-height: 1.5em;
}
p::first-letter { /*Dropcaps*/
	color: #291040;
	font-weight: bold;
	font-size: 2rem;
	font-family: titleFont;
}
footer { /*Copyright styling*/
	background-color: #A88FBF;
	width: 980px;
	max-width: calc(100% - 10px);
	height: auto;
	margin: 5px auto;
	padding: 5px;
	border-radius: 7px;
	text-align: center;
	font-size: 0.75em;
	box-shadow:0 0 10px #A88FBF;
}

@media screen and (max-width:667px) {/*Smaller viewport styles*/
#nameBox {
	font-size: 14vw;
}
section {
	width: 100% !important;
	height: auto;
	min-height: 100vh;
	margin: 5px;
}
#section0 {
	min-height: calc(100vh - 10px);
	margin-top: 75px;
}
img {
	width: 50vw;
	max-width: 100vh;
	height: auto;
}
footer {
	width: calc(100% - 10px);
	margin: 5px;
}
}
