* {
    box-sizing: border-box;
    font-family: 'Open Sans';
    /* font-size: 50px; */
}

body {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 32px;
}

.word-playground {
    display: grid;
    grid-template-columns: repeat(5, 65px);
    /* grid-template-rows: repeat(5, 65px); */
    justify-content: center;
    margin-top: 50px;
}

.input-box {
    width: 50px;
    height: 50px;
    border: 3px solid #cccccc;
    margin: 5px;
    font-weight: bold;
    font-size: 32px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    color: black;
}

.loader {
    display: none;
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 75px;
    height: 75px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.blink {
    animation: blinker 1s ease-in 1;
}

@keyframes blinker {
    0% {
        border-color: crimson;
    }
    100% {
    }
}