@font-face {
    font-family: 'fira-sans';
    src: url('http://kevinshort.me/fonts/fira-sans/FiraSans-Regular.otf');
}
@font-face {
    font-family: 'caviar-dreams';
    src: url('http://kevinshort.me/fonts/Caviar-Dreams/CaviarDreams.ttf');
}
@font-face {
    font-family: 'titillium';
    src: url('http://kevinshort.me/fonts/Titillium/Titillium-Regular.otf');
}

* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #111;
}

#header {
    text-align: center;
    padding: 2em;
    text-transform: uppercase;
    background-color: #04D689;
    color: #fff;
}
#header h1, #header h2 {
    font-family: 'fira-sans';
}
#header h2 {
    font-weight: normal;
}

#about {
    color: white;

    padding: 10em 0.4em;
    height: 100%;
    background-image: url("../img/forestHeader.jpg");
    background-position: center center;
    background-repeat: none;
    background-size: cover;
    
}
#about p {
    font-family: "fira-sans";
    font-size: 1.5em;
    padding: 1em;
    border-radius: 0.1em;
    background-color: rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin: 0 auto;
}
#about a {
    padding: 1em;
    background-color: #B53951;
    color: #fff;
    font-size: 1em;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    font-family: "fira-sans";
    display: block;
    margin: 0 auto;
    max-width: 400px;
}
#about a:hover {
    background-color: #C54961;
}

#worklist {
    background-color: #111;
    padding: 0.4em;
}
#worklist h2 {
    font-family: "fira-sans";
    text-align: center;
    color: #aaa;
    font-weight: normal;
    font-size: 1.6em;
}
#worklist p {
    font-size: 1.2em;
    font-family: "fira-sans";

    text-align: center;
    color: #bbb;
}
#worklist p em {
    font-weight: bold;
}

#worklist a {
    text-decoration: none;
    font-family: "fira-sans";
    color: #fff;
    margin: 0.2em auto;
}
#worklist a:hover {
    text-decoration: underline;
    color: #04D689;
}

#websiteShowcase {
    background-color: #fff;
    text-align: center;
    font-family: 'caviar-dreams';
    display: none;
}
#websiteShowcase * {
    font-family: 'fira-sans';
}
#websiteShowcase h1 {
    margin: 1em;
}
#websiteShowcase .website a {
    color: #fff;
    text-decoration: none;
}
#websiteShowcase .website {
    margin: 1em auto;
    max-width: 370px;
    background-color: #67549F;
    padding: 10px;
    /*outline: 2px dashed #222;*/
    /*outline: 2px solid #888;*/
}
#websiteShowcase img {
    /*outline: 2px solid #222;*/
    display: block;
    margin: 0 auto;

    max-width: 100%;
}
#websiteShowcase a:hover {
    text-decoration: underline;
}
#websiteShowcase .website a:hover > img {
    opacity: 0.9;
}

#contact {
    background-color: #B53951;
    color: #fff;
    text-align: center;
    padding: 3em 0 5em;
}
#contact * {
    font-family: 'fira-sans';
}
#contact h1 {
    margin-bottom: 1em;
    text-transform: uppercase;
}
#contact #contactForm {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 40em;
    /*outline: 1px dashed black;*/
}
#contact div {
    margin-bottom: 1.5em;
}
#contact label {
    font-family: "fira-sans";
    font-size: 1.2em;
    font-weight: bold;
    width: 100%;
}
#contact input, #contact textarea {
    width: 85%;
    border: none;
    padding: 0.6em 0.6em;
    border-radius: 0.2em;
    font-size: 1.2em;
    text-align: center;
}
#contact textarea {
    height: 10em;
    text-align: left;
}
.emailButton p {
    text-align: center;
    background-color: pink;
    padding: 10px;
}
#contact #submitEmail {
    background-color: #eee;
    color: #111;
    width: 100%;
    max-width: 15em;
    border: none;
    border-radius: 0.2em;
    padding: 1em;
    text-align: center;
    font-size: 1em;
    font-weight: bold;
}
#contact #submitEmail:hover {
    background-color: #B1E498;
}

#emailError {
    background-color: #fff;
    color: #B53951;
    margin: 0.5em auto;
    max-width: 20em;
    opacity: 0;
    transition: opacity 0.5s;
}

