@import url(https://fonts.googleapis.com/css?family=Raleway);

* {
	border: 0;
	margin: 0;
	padding: 0;

	-webkit-touch-callout: none;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-user-select: none;
}

html {
	background-color: black;
}

body {
	background-color: black;
	background: url(/images/Albert_Bierstadt_-_Among_the_Sierra_Nevada,_California_-_Google_Art_Project.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	min-height: 100vh;

	color: white;
	font-family: Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6, .jumbotron {
	text-align: center;
}

h1, h2, h3, h4, h5, h6, #introMessage, .well {
	font-family: Raleway, Helvetica, sans-serif;
}

h1 {
	text-shadow: 3px 3px 4px rgb(33, 33, 33);	
}

h1, h2 {
	color: white;
}

ul {
	list-style-type: none;
}

#siteSearch {
	position: absolute;
	top: 10px;
	right: 25px;
	text-align: right;
	width: 240px;	
}

#siteSearch input {
	background-color: rgba(255, 255, 255, 0.4);
	width: 100px;
	margin-left: 100px;

	transition: width 1s ease-out, margin-left 1s ease-out, background-color 1s ease-out;
}

#siteSearch input:hover, #siteSearch input:active {
	background-color: rgba(255, 255, 255, 0.9);
	width: 200px;
	margin-left: 0;
}

#siteSearch i {
	height: 20px;
}

.jumbotron {
	margin-bottom: 0;
}

body {
	padding-bottom: 140px;
	position: relative;
}

dt {
	margin-top: 20px;
	margin-bottom: 20px;
}

footer {
	position: absolute;

	/* top: calc(100% - 10px); */
	
	bottom: 5px;
	margin: 40px 20px 0;
	font-size: smaller;
}

.asterisk {
	position: absolute;
	bottom: 25px;
	right: 10px;
	font-size: smaller;
}

.panel-override, .panel-body-override {
	color: white;
	background-color: transparent;
	background: transparent;
	
	font-family: Helvetica, sans-serif;
}

.panel-override, .panel-body-override, .article {
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.jumbotron, h4.modal-title, .well {
	color: #333;
}

.jumbotron {
	margin-top: 40px;
}

#introMessage {
	text-align: center;
	font-size: 20px;
}

section ul li {
	margin-top: 40px;
	margin-bottom: 40px;
}

section ul li a:link, section ul li a:visited, section ul li a:hover, section ul li a:active {
	font-size: larger;
	background: white;
	margin-right: 10px;
	height: 20px;
	padding: 5px;
	border-radius: 3px;
	color: rgb(27, 15, 240);
	text-shadow: 1px 1px 1px #777;
}

#technologies {
	margin-left: 20px;
}

#math li, #contact li {
	width: 100%;
	text-align: center;
}

#contact li a:link, #contact li a:visited, #contact li a:hover, #contact li a:active {
	text-shadow: 1px 1px 2px rgb(33, 33, 33);
}

@-webkit-keyframes introFadeIn {
	0% {
		opacity: 0.0;
	}

	20% {
		opacity: 0.0;
	}
	
	100% {
		opacity: 1.0;
	}
}

@keyframes introFadeIn {
	0% {
		opacity: 0.0;
	}
	
	20% {
		opacity: 0.0;
	}
	
	100% {
		opacity: 1.0;
	}
}

#introMessage {
	-webkit-animation-name: introFadeIn;
	-webkit-animation-duration:  5s;

	animation-name: introFadeIn;
	animation-duration:  5s;
}

dt {
	cursor: pointer;	
}

dd {
	display: none;
}

dd a:link,
dd a:visited,
dd a:hover,
dd a:active,
footer a:link,
footer a:visited,
footer a:hover,
footer a:active {
	color: white;
}

@media (min-width: 768px) {
	.panel-override, .panel-body-override, .article {
		max-width: 80%;
	}
}