#html {}

#body {}

.col {
    display: inline-block;
}

.squares {
    background-color: grey;
    border-bottom-style: solid;
    border-right-style: solid;
}

.on {
    background-color: yellow;
}

#win {
    text-align: center;
    width: 460px;
    top: 100px;
    transition-property: opacity;
    transition-duration: 2s;
    border-style: solid;
    border-color: black;
    background-color: lightgrey;
    color: yellow;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    font-size: 100px;
    font-weight: bold;
    white-space: nowrap;
}

#blanket {
    transition-property: opacity;
    transition-duration: 2s;
    position: absolute;
    left: -5px;
    top: 0px;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0.4;
    background-color: black;
}

#restart {
    transition-property: width;
    transition-duration: 2s;
    transition-delay: 2s;
    width: 0px;
    height: 50px;
    overflow: hidden;
    text-align: center;
}

#restartText {
    opacity: 0;
    font-size: 40px;
    transition-property: opacity;
    transition-delay: 2.5s;
    transition-duration: 2s;
}

#controls {
    float: left;
    border-style: solid;
    display: inline-block;
}

#custamize {
    font-size: 50px;
    border-bottom-style: solid;
}

.input {
    margin: left;
    display: block;
}

#submit {
    font-size: 20px;
    width: 100%;
}

.hide {
    display: none;
}

.cheats {
    border-top-style: solid;
    text-align: center;
    font-size: 40px;
}

.decode {
    width: 100%;
    display: block;
}

#showCheats {
    width: 100%;
}