body {
    font-family: 'Alfa Slab One', cursive;
    text-align: center;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 25px;
    padding: 25px 0px 25px 0px;
    margin: 10px auto 10px;
    background-color: #fe0000; 
}

div {
    color: black;
    text-shadow: 1px 1px white;
    font-size: 20px;
    margin: auto;
}

h2 {
   color: #009345;
    letter-spacing: 3px;
    font-size: 22px;
    text-shadow: 1px 1px white;
    padding: 2px 0px 5px;
    height: 2px;
}

#guess{
    letter-spacing: 15px;
    font-size: 24px;
    padding: 5px 0px 5px;
}

table {
    font-family: 'VT323', monospace;
    font-size: 24px;
    margin: auto;
    border-collapse: separate;
    border-spacing: 5px;
    cursor: pointer;
}

td {
    width: 40px;
    height: 40px;
    color: white;
    background-color: #fe0000;
    border-radius: 5px;
    text-shadow: 1px 1px black;
}

.disable-td {
    cursor: default;
    background-color: darkslategray;
    color: black;
    text-shadow: 1px 1px gray;
}

.unclicked:hover {
    color: #fe0000;
    background-color: white;
}

button {
    font-family: 'VT323', monospace;
    font-size: 24px;
    padding: 5px;
    color: #fe0000;
    margin: 10px;
    background-color: white;
    border-radius: 5px;
}

#reset:hover {
    color: white;
    background-color: #fe0000;
}