body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #2c2c2c;
    color: #ffffff;
}

#game {
    display: inline-block;
    margin-top: 20px;
}

.row {
    display: flex;
}

.cell {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    background-color: #555;
}

.cell.open {
    background-color: #777;
    cursor: default;
}

.cell.mine {
    background-color: red;
}

.cell.flag {
    background-color: yellow;
}

.cell img {
    width: 20px;
    height: 20px;
}

#endScreen {
    display: none;
    margin-top: 20px;
}

#endMessage {
    font-size: 24px;
    color: #ff0000;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
}

#foxyImage {
    position: fixed;
    bottom: -200px; /* Height of the image */
    left: 50%;
    transform: translateX(-50%);
    width: 100px; /* Set specific width */
    height: 100px; /* Set specific height */
    text-align: center;
    transition: bottom 9s ease; /* 300% slower */
    z-index: 1000;
}

#foxyImage img {
    max-width: 100%;
    height: auto;
}
