/*
 * Sandbur Farm Productions electricDreams styles
 * Author: Dawn Manske
 * Date: Feb 2017
 * HTC 2010 JavaScript course Spring 2017
 */

html, body {
    font-family: 'Handlee', cursive;
}


/** {
    margin: 0;
    padding: 0;
    position: relative;
    border: 1px solid red;
    box-sizing: border-box;
}*/

.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    max-height: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.container2 {
    background-image: none;
    background-repeat: no-repeat;
    background-color: red;
    width: 50%;
    height: 630px;
    margin-left: auto;
    margin-right: auto;
}

.container3 {
    background-image: none;
    background-color: green;
    width: 50%;
    height: 630px;
}

input {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

header {
    background-color: black;
    width: 100%;
    min-height: 3em;
}

h1 {
    color: ghostwhite;
    font-size: 2.3em;
    font-weight: bold;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .8);
    text-align: center;
    vertical-align: middle;
}

h2 {
    margin-top: 20px;
    margin-left: 50px;
    color: ghostwhite;
    font-size: 2.3em;
    font-weight: bold;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .8);
}

#human {
    color: #1e3904;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .8);
}

#computer {
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 50px;
    color: ghostwhite;
    font-size: 1.8em;
    font-weight: bold;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .8);
}

button {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    background-color: #755723;
    color: white;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 5em;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-size: 1.1em;
}

footer {
    background-color: black;
    width: 100%;
    height: 3em;
    left: 0;
    right: 0;
    color: white;
    font-size: .8em;
    font-weight: bold;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .5);
    text-align: center;
    vertical-align: middle;
    padding-top: 1em;
    padding-bottom: 1em;
}

.flex-item-al img {
    display: flex;
    flex-direction: column;
    padding: 0;
    align-self: flex-end;
    flex-basis: 0 1 auto;
    margin-top: auto;
    margin-left: auto;
    margin-bottom: 0;
    width: 55%;
}

.flex-item-human-art img {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    flex-basis: 0 1 auto;
    margin-top: auto;
    margin-left: auto;
    margin-bottom: 0;
    padding-top: 40px;
    width: 100%;
    max-height: 200px;
}


/*********   media queries  **********/

@media screen and (max-width: 450px) {
    .container2 {
        width: 100%;
    }
    .container3 {
        width: 100%;
    }
}

@media screen and (min-width: 960px) {
    .flex-container, footer {
        width: 960px;
        margin-left: auto;
        margin-right: auto;
    }
}
