body{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial;
}

#info p{
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 1em;
    margin-right: 1em;
   font-size: 0.5em; 
}



@media (min-width: 60em){
    #info p{
        font-size: 1.3em;    
    }
    
}

#header{
    width: 100%;
    background: 	rgb(0, 128, 255);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display:flex;
    align-items: center;
    justify-content: center;
}


#header h1 {
    
    font-size: 1.2em;
    color: white;

}

  @media (min-width: 60em) {
    #header {
      font-size: 2.4em;
    }
  }

#info{
    width: 50%;
    height: 100%;
    border: 1px black solid;
    border-radius:10px;
    margin-top: 30px;
    background-color: #D8D8D8;
}

#gameMode label{

    font-size: 0.5em;

}



@media (min-width: 60em){
    #gameMode label{
        font-size: 1.3em;    
    }
    
}

#gameMode{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}
input[type="submit"] {

    border-radius: 8px;
    background: rgb(0, 128, 255);
    color: white;
}