html{
        background-color: #ffffff;

}

body {
    width:1000px;
    height:600px;
    font-family: sans-serif;
    background-color: #f8f9fa;
    color: #202122;
}

h1 {
        font-size: 1.8em;
        font-family: 'Linux Libertine','Georgia','Times',serif;
}

#main-content {
border-top: 1px solid #a7d7f9;
    margin:0 50px;
    padding: 10px;
    background: #ffffff;
    height:410px;
}

#riddleimage{
        max-width: 300px;
        MAX-height: 400px;
        
}

#answers {
    flex-direction: column;
}

#scores {
        margin:0 50px;

    font-size: 0.75em;
    text-align: right;
}

#help{
    font-style: italic;
    font-size: 0.75em;
}

.game-data {
    margin:6px;
}

button {
    margin:20px;
    display: block;
background-color: #f8f9fa;
color: #202122;
border-color: #a2a9b1;
    
    border: 1px solid;
    padding-top: 5px;
    padding-bottom: 5px;
    min-height: 32px;
    font-weight: bold;
    text-decoration: none;
    vertical-align: top;
    text-align: center; 
    cursor: pointer;

    
}


button:hover{
    background-color: #fff;
    color: #404244;
    border-color: #a2a9b1;
}

button:active{
    background-color: #c8ccd1;
    color: #000;
    border-color: #72777d;
}
button.goodanswer{
    border-color: #33cc40;
    box-shadow: inset 0 0 0 1px #33cc40;
    transition: 0.25s all ease-in-out;

}
button.badanswer{
    border-color: #c33;
    box-shadow: inset 0 0 0 1px #C33;

}

button[disabled]{
    background-color: #fff;
    color: #888;
    cursor: default;

}
div.thumbinner {
    border: 1px solid #c8ccd1;
    padding: 3px;
    background-color: #f8f9fa;
    font-size: 94%;
    text-align: center;
    overflow: hidden;
    clear: right;
float: right;
}