/* wordle.css */

body {
    color: GhostWhite;
    background-color: black;
}

.letters {
    width: 66.667%;
    display: block;
    background-color: black;
}

div.letter {
    display: inline;
    
    color: GhostWhite;
    background-color: DarkGray;
    font-family: "Segoe UI", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid black;
    
    width: 9%;
    padding: 0;
    margin: 0.5%;
    
    text-align: center;
    vertical-align: middle;
}

.letter.yellow {
    background-color: DarkKhaki;
}

.letter.green {
    background-color: ForestGreen;
}

.letter.black {
    background-color: DimGray;
}

.letter.focused {
    border: 2px solid DarkTurquoise;
}

.list-item {
    display: block;
    padding: 0;
}

.main-section {
    display: inline;
}

#db-list .row .col {
    border-left: 2px solid green;
}

#instructions {
    margin-top: 30px;
}

#instructions > div {
    display: block;
}

.tech {
    font-family: 'Consolas', 'Courier New', 'Courier', 'Lucida', monospace;
    text-weight: bold;
    color: LemonChiffon;
}
