/* css reset */


body {
    background-image: url(https://s-media-cache-ak0.pinimg.com/originals/4e/cc/57/4ecc5727c94b40b7136b13c9c3169b1f.jpg);
}

@media screen and (max-width:900px) {
    footer {float: left;font-size:0.5em;}
}

.container {
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 20px;
    text-align: center;
}

#headers {
    color: #fff;
}

#userinput {
    margin: 2em;
    justify-content: center;
}

.userguess {
    border: 1px solid #ABA0A0;
    box-shadow: -6px -6px 12px #888888;
    border-radius: 100%;
    width: 150px;
    height: 150px;
    text-align: center;
    font-size: 50px;
    font: #000;
}

.userguess:focus {
    border: none;
}

#guesses {
    display: flex;
    flex-direction: row;   
    justify-content: space-evenly;
}

.pastguess1, .pastguess2, .pastguess3, .pastguess4 {
    background: #D4D1D1;
    text-align: center;
    width: 1.75em;
    height: 1.5em;
    border: 1px solid #372F2F;
    border-radius: 15%;
    margin-bottom: 1em;
    font-size: 50px;
}

.btn-success {
    margin: auto auto -8em -4em;
    border: 1px solid #878585;
    border-radius: 100%;
    width: 5em;
    height: 5em;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-top: 5em;
    margin-bottom: 0;
    padding-bottom: 0;  
    background-color: #fff;
}

#fs, #gh, #me {
    height: 6em;
    width: auto;
    padding: 1em;
}
#me {
    float: left;
}

#gh {
    float: right;
}



