#mainbody
{
    text-align: center;

    min-height: 100%;
    margin-bottom: -30px;
}

#sticky-footer, .push
{
    height: 25px;
    padding: 5px;
}

#controlButtons
{
    border: 1px solid dotted;
    text-align: center;
}

.controlButton
{
    border-radius: 0.3em;
    border: 0px;
    font-size: 1.5em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:normal;
    padding: 0.5em;
}

.tinybutton
{
    border-radius: 0.3em;
    border: 0px;
    padding: 0.4em;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:normal;
}

#controlButtons hr
{
    max-width: 200px;
}

.blur
{
    filter: blur(5px);
}

#gridHolder
{
    position: relative;
    width: fit-content;
    margin: auto;
}

.row
{
    display: flex;
    flex-direction: row;
}

.dropSpot
{
    background: grey;
    margin: 3px;
    border: 2px solid black;
    text-align: center;
    vertical-align: center;
    width: 60px;
    height: 60px;

	display: grid;
	align-items: center;

    user-select: none;
}

.dropSpotOver
{
    background: gold;
    border: 2px solid green;
}

.letterBoxOuter
{
    background: pink;
    margin: 3px;
    border: 2px solid grey;
    text-align: center;
    vertical-align: center;
    width: 50px;
    height: 50px;

	display: grid;
	align-items: center;

    user-select: none;

    text-transform: capitalize;
    font-weight: bold;
    font-size: 2em;
}

@media only screen and (max-width: 500px)
{
    .dropSpot
    {
        width: 40px;
        height: 40px;
    }

    .letterBoxOuter
    {
        width: 35px;
        height: 35px;
    }
}

.returnHome
{
    
}

.letterBoxInner
{
}

.partOfWord
{
    box-shadow: 0px 0px 10px darkgreen;
}

#gameboxInner
{
}

#winBox
{
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    top: 20px;
    left: 0;
    right: 0;
    max-width: 350px;
    padding: 5px;
    min-height: 500px;
    background: white;
    border: 2px solid black;
}

#gameboxOuter
{
    display: relative;
    max-width: 600px;
    margin: auto;
}

#guessesContainer
{
    margin-left: 3em;
}

#guessesContainer th
{
    padding-left: 1em;
    min-width: 5em;
    text-align: left;
}

#guessesContainer td
{
    text-align: left;
}

.loader
{
    display: inline-block;
    margin-left: 0.5em;
    margin-bottom: -0.3em;
    border: 0.3em solid #f3f3f3;
    /* Light grey */
    border-top: 0.3em solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 0.6em;
    height: 0.6em;
    animation: spin 2s linear infinite;
}

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

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

#similarityNotes
{
    margin-top: 5px;
    border-top: 1px solid black;
    padding-top: 10px;
}

#winBoxLoaderBox
{
    text-align: center;
    border-bottom: 1px solid black;
    padding-bottom: 0.1em;
    margin-bottom: 0.3em;
    font-weight: bold;
    font-size: 1em;
}

#gameStatus
{
    margin-bottom: 0.3em;
}