body {
    margin-top: 60px;
    font-family:'Courier New', Courier, monospace;
    text-align: center;
    color: rgb(84, 12, 8);
    background-color: rgb(247, 247, 247);
}

hr {
    width: 300px;
    border-top: 1px dashed rgb(179, 0, 0);
    border-radius: 5px;
}

#board {
    width: 400px;
    height: 400px;
    border: 6px solid  rgb(152, 109, 107);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    border-radius: 2px;
}

.tile {
    background-color: #f9f6f2;
    width: 90px;
    height: 90px;
    border: 5px solid rgb(187, 136, 133);
    font-size: 40px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: 0.3s ease;
    transition: all 0.2s ease;
}


#restart-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    background-color: rgb(162, 21, 14);
    color: #f9f6f2;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

#restart-button:hover {
    background-color: #e1ccb8;
    color: rgb(151, 114, 111);
}

.key {
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    flex-wrap: nowrap; 
}

.key .key-img img {
    margin-top: 20px;
    width: 60px;
    height: 60px;
    padding: 5px;
    background-color: rgb(200, 91, 91);
    border-radius: 30px;
    gap: 20px
}