/*************
 *Global CSS**
**************/

html {
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    text-align: left;
    background-color: #ffffff;
    color: #000000;
    font-weight: normal;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100%;
    font-family: 'Open Sans', sans-serif;
}

img {
    max-width: 100%;
}


/********************
 *Index Section CSS**
 ********************/

#splash-index {
    background: url('../../background.jpg') no-repeat top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
}

@media (min-width: 1200px) {
    #splash-index {
        background-attachment: fixed;
    }
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 2;
    background-color: #080d15;
    opacity: .5;
}

.splash-text-container-outer {
    display: table;
    height: 100%;
    width: 100%;
    margin-top: -100px;
    /*padding-top: 100px;*/
    float: left;
}

.splash-text-container {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    color: #ffffff;
    z-index: 99;
    position: relative;
    padding: 0 10px;
}

.splash-text-container a {
    color: #FFD700;
    text-decoration: none;
    -ms-transition:color .4s ease-out, background .3s ease-in;
    -moz-transition:color .4s ease-out, background .3s ease-in;
    -webkit-transition:color .4s ease-out, background .3s ease-in;
}

.splash-text-container a:hover {
    color: #ffffff;
    text-decoration: none;
    -ms-transition:color .4s ease-out, background .3s ease-in;
    -moz-transition:color .4s ease-out, background .3s ease-in;
    -webkit-transition:color .4s ease-out, background .3s ease-in;
}

.splash-text-container p.main-message {
    display: block;
}

.splash-text-container p.sub-message {
    display: block;
}

@media(min-width: 1200px) {
    .splash-text-container p.main-message {
        font-size: 80pt;
    }

    .splash-text-container p.sub-message {
        font-size: 26pt;
    }
}

@media(max-width: 1199px) {
    .splash-text-container p.main-message {
        font-size: 30pt;
    }

    .splash-text-container p.sub-message {
        font-size: 12pt;
    }
}

a.start-search {
    background-color: #4cae4c;
    border-radius: 5px;
    border: solid 2px #4cae4c;
    color: #ffffff;
    margin-top: 15px;
}

@media (max-width: 767px) {
    a.start-search {
        padding: 15px;
        font-size: 20pt;
        display: block;
    }
}

@media (min-width: 768px) {
    a.start-search {
        padding: 25px;
        font-size: 30pt;
    }
}

a.start-search:hover {
    background-color: #4cae4c;
    border: solid 2px #4cae4c;
    color: #ffffff;
}

/*********************
 *Search Section CSS**
 *********************/

#searchContainer {
    padding: 40px 0 0 0;
}

button.search {
    padding: 20px;
    font-size: 25pt;
    display: block;
    margin: 20px auto;
    background-color: #4cae4c;
    border: solid 2px #4cae4c;
    color: #ffffff;
}

button.search:hover {
    background-color: #4cae4c;
    border: solid 2px #4cae4c;
    color: #ffffff;
}

/**********************
 *Results Section CSS**
 **********************/

#results {
    margin: 30px 0 100px 0;
}

@media (max-width: 767px) {
    #map {
        width: 100%;
        height: 300px;
    }
}

@media (min-width: 768px) {
    #map {
        width: 100%;
        height: 500px;
    }
}

/*************************
 *Assignment Section CSS**
 *************************/

#assignmentContainer {
    padding: 0 20px;
}

#assignmentContainer h1 {
    padding-bottom: 20px;
}

#assignmentContainer p {
    font-size: 18pt;
    word-break: break-all;
}

span.code {
    font-family: 'Source+Code+Pro';
}