@charset "UTF-8";

html,
html * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (max-width: 918px){
}
/* 
Define this in your CSS 
.bgColor = Replace it by the name you want to give your animation
.bgAnimObj = Assign this class to the object you want to apply the effect
*/

.bgAnimObj {
	background: #1abc9c;
	/* Chrome, Safari */
	-webkit-animation: bgColor 5s;
	/* Firefox */
	-moz-animation: bgColor 5s;
	/* Standard Syntax */
	animation: bgColor 5s;
}

/* 
Define the keyframe and changes
*/

/* Chrome, Safari */
@-webkit-keyframes bgColor {
	from {
 		background: #1abc9c;
	} 
	to {
 		background: #ebebeb;
	}
}

/* Firefox */
@-moz-keyframes bgColor {
    from {
        background: #1abc9c;
    }
    to {
        background: #ebebeb;
    }
}

/* Standard syntax */
@keyframes bgColor {
	from {
		background: #1abc9c;
	}
	to {
		background: #ebebeb;
	}
}

@media (max-width: 918px){
}

body {
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	font-size: 1em;
	background: white;
		-webkit-transition: color .3s;
	transition: color .3s;
}

header {
	width: 100%;
	top: 0;
	padding: 1.5em;
	position: fixed;
}
header {
	z-index: 1000;
}
a:link {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a, a:visited {
	color: inherit;
}

h1 {
	color: #000000;
	text-transform: none;
	font-size: 1em;
	letter-spacing: 0em;
	text-shadow: 0px 0px 8px rgba(0, 0, 0,.52);
}
h2 {
	color: #000000;
	font-size: .75em;
	letter-spacing: 0em;
	line-height: 2;
	text-shadow: 0px 0px 10px rgba(0, 0, 0,.05);
}

.titles {
	position: relative;
	height: 100em;
	background-image: -webkit-linear-gradient(bottom left, rgb(255,91,127) 0%, rgb(255,213,86) 100%);
	background-image: -o-linear-gradient(bottom left, rgb(255,204,252) 0%, rgb(255,213,86) 0%);
	background-image: linear-gradient(to bottom right, rgba(255,204,252,1.00) 0%, rgb(255,213,86) 100%);
}


.title-list {
	font-size: .75em;
	display: inline-block;
	letter-spacing: 0em;
	line-height: 2;
	text-shadow: 0px 0px 10px rgba(0, 0, 0,.05);
	position: absolute;
	z-index: 20000;
	padding-top: 4em;
	padding-left: 1.5em;
	top: 3em;
	left: 1em;
	bottom: 0;
	width: 100%;
	text-align: left;
		color: #000000;
	-webkit-transition: color .3s;
	transition: color .3s;
	text-decoration: none;
}

.title-list:hover {
	border-bottom: 1px solid black;
}


