body {
    user-select: none;
}

button {
  margin: 0;
}

#game {
    width: 800px;
    height: 680px;
    background-color: #869ca7;
    margin-right: auto;
    margin-left: auto;
    color: white;
}

#consonants {
    text-align: center;
}

#consonants div {
    width: 28px;
    height: 28px;
    background-color: #d3d3d3;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid black;
    display: inline-block;
    color: black;
    font-family: monospace;
}

#vowels {
    float: left;
    width: 50%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

#vowels div {
    width: 28px;
    height: 28px;
    background-color: #d3d3d3;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid black;
    display: inline-block;
    color: black;
    font-family: monospace;
}

#vowelPoints {
    float: left;
    width: 50%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

#solve {
    clear: both;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

#solve #enterButton {
    margin-top: 10px;
}

#solve #gameSaying {
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    width: 80%;
}

#enterButton {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 150px;
}

#showAnswer {
    height: 50px;
    float: left;
    width: 50%;
}

#answerButton {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 200px;
}

#newGame {
    height: 50px;
    float: left;
    width: 50%;
}

#gameButton {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 200px;
}

#row1 {
    text-align: center;
    height: 40px;
}

#row1 div {
    width: 38px;
    height: 36px;
    background-color: green;
    text-align: center;
    font-size: 1.4rem;
    border: 1px solid black;
    display: inline-block;
    color: black;
    overflow: hidden;
}

#row2 {
    text-align: center;
    height: 40px;
}

#row2 div {
    width: 38px;
    height: 36px;
    background-color: green;
    text-align: center;
    font-size: 1.4rem;
    border: 1px solid black;
    display: inline-block;
    color: black;
    overflow: hidden;
}

#row3 {
    text-align: center;
    height: 40px;
}

#row3 div {
    width: 38px;
    height: 36px;
    background-color: green;
    text-align: center;
    font-size: 1.4rem;
    border: 1px solid black;
    display: inline-block;
    color: black;
    overflow: hidden;
}

#row4 {
    text-align: center;
    height: 40px;
}

#row4 div {
    width: 38px;
    height: 36px;
    background-color: green;
    text-align: center;
    font-size: 1.4rem;
    border: 1px solid black;
    display: inline-block;
    color: black;
    overflow: hidden;
}

#constInfo {
    margin-top: 10px;
}

header {
    padding-top: 10px;
    margin-top: 0;
}

#report {
    text-align: center;
    width: 100%;
    font-size: .9rem;
    clear: both;
}

#gamePoints {
    text-align: center;
    width: 140px;
    font-size: 1rem;
    color: black;
    background-color: white;
    margin-right: auto;
    margin-left: auto;
    height: 28px;
    padding-top: 2px;
}

#numberOGs {
    text-align: center;
    width: 120px;
    font-size: .8rem;
    color: black;
    margin-left: 20px;
    line-height: 14px;
}

#localStorage {
    text-align: left;
    width: 120px;
    font-size: .8rem;
    color: black;
    margin-left: 20px;
    line-height: 14px;
}

.center {
    text-align: center;
}