* {
    margin: 0;
    padding: 0;
    font-family: 'Signika Negative', sans-serif;
}

body {
    background-color: #018281;
    color: rgb(20, 20, 20);
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#table-container {
    max-width: 100%;
    overflow: auto;

}

table {
    background-color: rgb(192, 192, 192);
    border-collapse: collapse;
    border: 3px solid #5e5b5b;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

td {
    border-style: solid;
    border-width: 2px;
    border-color: rgb(128, 128, 128);
    text-align: center;
    height: 50px;
    min-width: 50px;
    font-size: 28px;
    font-weight: bold;
    background-color: rgb(192, 192, 192);
    -webkit-box-shadow: inset 0.5rem 0.5rem rgb(255, 255, 255), inset -0.5rem -0.5rem rgb(128, 128, 128);
    box-shadow: inset 0.4rem 0.4rem rgb(255, 255, 255), inset -0.3rem -0.3rem rgb(128, 128, 128);
}

#stats-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    border: 3px solid #5e5b5b;
    width: 350px;
    min-height: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 28px;
    background-color: rgb(192, 192, 192);
    -webkit-box-shadow: inset 0.5rem 0.5rem rgb(255, 255, 255), inset -0.5rem -0.5rem rgb(128, 128, 128);
    box-shadow: inset 0.4rem 0.4rem rgb(255, 255, 255), inset -0.3rem -0.3rem rgb(128, 128, 128);
}

.statsitem {
    width: 50px;
    color: rgb(20, 20, 20);
}

.sizeitem {
    padding: 15px;
}

button {
    background-color: transparent;
    outline: 1px outset rgba(0, 0, 0, 0.5);
    outline-offset: 0;
    font-size: 24px;
}

#size-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
}

#gameovermessage {
    min-height: 30px;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 920px) {
    td {
        height: 45px;
        min-width: 45px;
        font-size: 24px;
    }
}