body {
  background-color: #084a64;
  font-family: "Monomaniac One";  
  text-align: center;
  color:white;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr 2fr 1fr;
  grid-template-areas:
    "headerL headerC headerR"
    "sidebarL main sidebarR"
    "footer footer footer";
    overscroll-behavior: none;
    touch-action: none;

}

#body {
  grid-area: main;
  padding-top: 0px;
  margin:0px;

}
a {
  color: white;
  text-decoration: none;
}
body input{
    height: 30px;
    border-radius: 10px;
    border: 2px solid white;
    background-color: #02212e;
    color: white;
    font-size: 1.5em;
    font-family: "Monomaniac One";
}
body label{
    font-size: 1.5em;
}
.fieldWrapper{
    height:30px;
    margin: 30px;
}


#headerC {
  grid-area: headerC;
  text-align: center;
  color: white;
  font-size: 3em;
  border-bottom: 2px solid white;
}

.gameLink{
    width:60%;
    border:2px solid white;
    border-radius: 10px;
    
}

.sidebarR{
  grid-area: sidebarR;

}

.headerR{
  grid-area: headerR;
}
