body{
    background-color: #ffffff;
    margin:0px;
    text-align:center;
    font-family: 'Source Sans Pro';
}

#container{
    width:90%;
    padding: 20px;
    margin: 0px auto;
}

#definition{
    width: 100%;
    font-family: 'Source Sans Pro';
    font-size:20px;
    font-style: italic;
    color:#141414;
    padding:10px;
}

#letters{
    width:100%;
    font-family: 'Source Sans Pro';
    padding: 10px;
}

.headline{
    font-size: 18px;
    font-weight: 600;
}

.subhead{
    font-size: 14px;
}

#yourletters{
    display:inline-flex;
    width:300px;
    margin: 10px auto;
}

.letter_select{
    float: left;
    width: 75px;
    height: 50px;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    border: solid 1px #2c2929;
    font-size: 40px;
    margin:10px;
}

.letter{
    float: left;
    width: 25px;
    height: 25px;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    border: solid 1px #2c2929;
    font-size: 18px;
    margin:3px;
}

#startgame{
    border-radius: 5px;
    background-color: #058529;
    color:#ffffff;
    padding: 10px;
    width: 300px;
    margin: 10px auto;
    font-weight: 800;
    font-size: 18px;
    cursor:pointer;
}

#startgame:hover{
    background-color:#1726a6;
}

#answer{
    width: 100%;
    margin:10px auto;
}

#answer_box{
    width:100%;
    margin:10px auto;
    display:inline-flex;
    justify-content: center;
}

#counter{
  width: 100%;
  padding: 10px;
  clear:both;
}

#countertext{
    width: 100px;
    margin: 10px auto;
    background-color: #058529;
    color: #ffffff;
    font-size: 30px;
    padding: 10px;
    font-weight: 600;
}

.letter_correct{
    background-color: #058529;
    color:#ffffff;
}

.letter_incorrect{
    background-color: #851f05;
    color:#ffffff;
}

#win_count{
    color:#058529;
    font-size: 20px;
}

#finished{
    display: none;
    position: fixed;
    height: 300px;
    width: 90%;
    background-color: white;
    border: #141414 solid 1px;
    border-radius: 10px;
    text-align: center;
    z-index: 100;
    top: 20px;
    left: 3%;
    padding: 7px;
}

.overlaycontent{
    margin-top:  20px;
    font-size: 20px;
}

.heavy{
    color:#058529;
    font-weight: 800;
}