body{
    background-color: #1E1E1E;
    color: #020202;
}

.game-container{
    background: #313336;
    padding: 0px;
    padding-bottom: 10px;
    width: 380px;
    margin: 30px auto;
}

.scoreContainer {
    background: #464b47;
    font-weight: bold;
    text-align: center;
    color:#d8d8d0;
    padding: 5px 0;
    margin: auto;
}

#score-contents{
    display: flex;
    justify-content: space-between;
    margin: 0 50px;
}

.score-content {
    display: flex;
    flex-direction: column;
}

.score{
    font-size: 24px;
}
.scoreTitle{
    font-size: 12px;
}

.header {
    font-size: 24px;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

#result{
    text-align: center;
    margin: auto;
}

.grid {
    display:flex;
    flex-wrap: wrap;
    height: 300px;
    width: 300px;
    background-color: #626262;
    margin: 30px auto;
    justify-content: center;
    align-content: center;
}

.grid div{
    width: 60px;
    height: 60px;
    margin: 5px;
    background-color:#A5A5A5;
    text-align: center;
    vertical-align: middle;
    line-height: 60px;
    font-weight: bold;
    font-size: 30px;
    color: #534449;
}