h1,.wrap{
 text-align:center;
 width:100%;
}

.field {
    width: 400px;
    height: 400px;
    border-radius: 5px;
    position: relative;
    display: none;
}

.cell {
    box-sizing: border-box;
    width: 100px;
    height: 100px;
    border: 3px solid #ffb846;
    border-radius: 10px;
    position: absolute;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
}

.child1 {
    display: inline-block;
    padding: 20px;
    border: 1px solid black;
    border-radius: 5px;
    align-content: center;
    vertical-align: top;
}

.child2 {
    display: inline-block;
}

.titleAndButton {
    text-align: center;
    vertical-align: top;
}

.result {
    display: none;
    font-family: "Arial";
    font-size: 13pt;
}

.difficulty {
    text-align: left;
    font-family: "Arial";
    font-size: 13pt;
}


.game {
    font-weight: 700;
    color: white;
    text-decoration: none;
    padding: .8em 1em calc(.8em + 3px);
    border-radius: 3px;
    background: rgb(64, 199, 129);
    box-shadow: 0 -3px rgb(53, 167, 110) inset;
    transition: 0.2s;
}

.game:hover {
    background: rgb(53, 167, 110);
}

.game:active {
    background: rgb(33, 147, 90);
    box-shadow: 0 3px rgb(33, 147, 90) inset;
}

h1,h2{
    font-family: "Arial Black";

}
#forBots{
 display:block;
 margin:300px auto 300px;
 color:#888;
}
#forBots input,#forBots button,#forBots div{
 display:block;
 margin:0 auto 5px;
 font-size:11px;
}
#forBots button{
 background: #fff;
 border: 1px solid #ccc;
 border-radius: 2px;
 margin-top:10px;
 color: #888;
}
#forBots input,#forBots textarea{
 font-size:14px;
 border: 1px solid #ccc;
 border-radius: 2px;
 
}
#forBots div{
 margin:0 auto;
 font-size:6px;
}
#forBots textarea.error{
 border: 2px solid red;
}