* {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
}

.header {
    border-bottom: solid black 0.25rem;
    padding: 2rem;
    font-size: 1.5rem;
}

.main {
    width: 100%;
    padding: 50px;
}

.wordGrid {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.letter {
    height: 75px;
    width: 75px;
    border: solid black;
    margin: 2px;
    font-size: 2.5rem;
}

.letter.correctPlace {
    background: #36cc36;
}
.letter.correctLetter {
    background: #e9b138;
}