* {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}
#reset {
    background-color: gray;
}

.app-container{
    width: 445px;
    display: grid;
    align-content: center;
    /*border: 1px solid red;*/
}

.app-container > .title {
    text-align: center;
    width: 100%;
    height: 65px;
    /*border: 1px solid green;*/
    margin-top: 26px;
    font-size: 32pt;
    border-bottom: 2px solid gray;
}

.app-container > #guesses {
    /*display: flex;*/
    width: 234px;
    height: 300px;
    /*border: 1px solid red;*/
    margin-left: 105px;
    margin-top: 20px;
}

#keyboard {
    /*display: grid;*/
    height: 97px;
    /*border: 1px solid red;*/
    border-spacing: 3px;
}

#keyboard > button{
    width: 40px;
    height: 33px;
    margin: 2px;
}

#keyboard > button:nth-child(11) {
    margin-left: 20px;
}

#keyboard > button:nth-child(20) {
    width: 65px;
}

#keyboard > button:nth-child(28) {
    width: 55px;
}

.guessLetter {
    width: 40px;
    height: 40px;
    background-color: gray;
    text-align: center;
    vertical-align: middle;
    font-size: 24pt;
    margin: 3px;
}
.guessRow {
    display: flex;
    /*border: 1px solid green;*/
    width: 234px;
    height: 46px;
}

.col-gray {
    background-color: darkgrey;
}
.col-green {
    background-color: green;
}
.col-yellow {
    background-color: darkkhaki;
}
#Messages{
    height: 25px;
    width: 100%;
    text-align: center;
}