body {
    color: rgb(255, 255, 255);
    text-align: center;
    background: rgb(0, 0, 0);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 22px;
    margin: 20px 0px 20px 0px;
    line-height: 20px;
}

h2 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: rgb(255, 255, 255);
    margin: 20px 0px 20px 0px;
    font-weight: normal;
}

p {
    font-family: 'Courier New', Courier, monospace;
}

textarea {
    font-family: 'Courier New', Courier, monospace;
}

a {
    font-family: 'Courier New', Courier, monospace;
    color: rgb(113, 226, 207);
}

table {
    margin-left: auto;
    margin-right: auto;
}

tr,
td {
    padding: 0px 0px 0px 0px;
}

#menu:hover {
    top: 0px;
    transition: all 0.25s ease-in-out;
}

#menu {
    background: rgba(50,50,50,0.8);
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    position: absolute;
    text-align: center;
    overflow: hidden;
    width: 100%;
    height: 150px;
    left: 0;
    top: -120px;
    z-index: 150;
    font-family: 'Courier New', Courier, monospace;
    transition: all 0.25s ease-in-out;
}

#timer {
    font-size: 22px;
    bottom: 0;
    right: 10px;
    line-height: 26px;
    position: absolute;
}

#bombs {
    font-size: 22px;
    bottom: 0;
    left: 10px;
    line-height: 26px;
    position: absolute;
}

#background {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -50;
    position: fixed;
}

#cells {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 100%;
    height: 100%;
    z-index: 50;
    top: 0px;
    left: 0px;
    position: absolute;
}

.cell:hover {
    background: rgb(255, 255, 255, 0);
}

.cell {
    position: absolute;
    filter: invert(100%);
    z-index: -20;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgb(255, 255, 255, 0);
}