body{
    height:               100vh;
    width:                100vw;

    padding:              0px;
    margin:               0px;
    overflow:             hidden;

    background-image:     url('./images/bg_default.jpg');
    background-repeat:    no-repeat;
    background-size:      cover;
    background-position:  bottom;

    align-items:          center;
    align-content:        center;
    justify-content:      center;
}

#div_main{
    margin:               0px;
    padding:              0px;
    height:               100vh;
    width:                100vw;

    font-family:          monospace;
    font-size:            20px;
    color:                gray;

    border-width:         0px;
    border-style:         solid;
    border-color:         black;

    align-items:          center;
    align-content:        center;
    justify-content:      center;
}


#div_menu{
  margin:               0px;
  padding:              0px;
  height:               625px;
  width:                500px;

  align-items:          center;
  align-content:        center;
  justify-content:      center;

  border-width:         7px;
  border-style:         double;
  border-color:         rgba(200,1,1,0.4);
  border-radius:        25px;
  background-color:     rgba(1,1,1,0.9);
}

.form_new_game{
    text-align:         center;
    margin:             5px;
    padding:            15px;
    width:              180px;
    border-style:       solid;
    border-radius:      8px;
    border-width:       3px;
    border-color:       white;
    font-family:        monospace;
    font-size:          23px;
    font-weight:        bold;
    color:              rgba(1,120,255,0.94);
    background-color:   rgba(80,80,80,0.2);
}

.form_new_game:hover{
  background-color: black;}

.form_submit{
  width:              250px;
  font-size:          30px;
  border-width:       7px;
  border-color:       silver;
  color:              white;
  background-color:   rgba(1,115,92,0.6);
  border-radius:      15px;
}

.form_submit:hover{
    background-color:   rgba(1,115,92,0.6);
    color:              white;
}

.form_new_game:hover{
  border-style:       inset;
}
