/* 

Kirsten's Prompts Basic Skeleton Theme
by Jordan Spencer Cunningham
https://nerdology.org

*/

/* Basic */

/* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) -- http://cssreset.com */

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,b, u, i, center, dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

@font-face {
	font-family: "Century";
	src: url("century-normal.ttf");
}

html, body {
	font-family: "Century";
	color: #FFFFFF;
	background: #000000;
	font-size: 18px;
	height: 100%;
	width: 100%;
}

#content {
        vertical-align: middle;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
        margin-left: auto;
        margin-right: auto;
        width: 95%;
}

#prompt {
    	margin-top: 100px;
    	font-size: 55px;
    	text-align: center;
	line-height: 1em;
    	animation: fadein 5s;
    	-moz-animation: fadein 5s; /* Firefox */
    	-webkit-animation: fadein 5s; /* Safari and Chrome */
    	-o-animation: fadein 5s; /* Opera */
}

#meta {
	margin-top: 100px;
	text-align: center;
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

a {
	color: #FFFFFF;
	text-decoration: none;
        -o-transition:.5s;
        -ms-transition:.5s;
        -moz-transition:.5s;
        -webkit-transition:.5s;
        transition:.5s;
}

a:visited {
	color: #FFFFFF;
	text-decoration: none;
}

a:hover {
	color: #FF0000;
	text-decoration: none;
	-o-transition:.5s;
  	-ms-transition:.5s;
  	-moz-transition:.5s;
  	-webkit-transition:.5s;
  	transition:.5s;
}

a:active {
	color: #5E5E5E;
	-o-transition:.1s;
        -ms-transition:.1s;
        -moz-transition:.1s;
        -webkit-transition:.1s;
        transition:.1s;
}

h1 {
	text-align: center;
	font-size: 72px;
	color: #A3A3A3;
}

h2 {
	text-transform: capitalize;
	font-weight: bold;
	font-size: 24px;
	text-align: center;
	margin-bottom: 12px;
	margin-top: 12px;
}

h3 {
	text-transform: capitalize;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 7px;
	margin-top: 12px;
}

h4 {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 7px;
}

p {
	margin-bottom: 10px;
	margin-top: 10px;
}
