html {
    font-size: 200%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
    margin: 0px;
    padding: 0px;
}

table {
    border-collapse: collapse;
}

td {
    border: 1px solid black;
    padding: 1em;
}

.emptyBlock {
    width: 2em;
    height: 2em;
    background-color: lightgray;
}

.block {
    display: inline-block;
    padding: 0.5em;
    background-color: skyblue;
}

.block.feedback {
    background-color: coral !important;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 1.5em;
    border-radius: 1em;
}

.blockContainer {
    width: 100%;
    height: 3em;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.contentWrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: slateblue;
}

button {
    margin-top: 0.5em;
    font-size: xx-large;
}

td {
    text-align: center;
}

.inp {
    border: 2px solid black;
    background-color: lightgoldenrodyellow;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 1.5em;
}

.score {
    margin-top: 0.5em;
    font-weight: bold;
}