body {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin-right: auto;
    margin-left: auto;
    width: 50em;
    
}

#gameboard {
    text-align: center;
}

#buttons {
    margin-top: 50px;
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 0.5em;
}

.displayChoice {
    text-align: left;
    margin-top: 40px;
}

#display {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 0.5em;
    height: 100px;
    margin-bottom: 20px;
}

#pictureChoice {
    margin-top: 20px;

}

.choose:hover{
    color: #fff;
    background-color: #616467;}
.choose{
display: inline-block;
outline: none;
cursor: pointer;
font-size: 14px;
line-height: 1;
border-radius: 500px;
transition-property: background-color,border-color,color,box-shadow,filter;
transition-duration: .3s;
border: 1px solid transparent;
letter-spacing: 2px;
min-width: 160px;
text-transform: uppercase;
white-space: normal;
font-weight: 700;
text-align: center;
padding: 16px 14px 18px;
color: #616467;
box-shadow: inset 0 0 0 2px #616467;
background-color: transparent;
height: 48px;

}

