* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Roboto Condensed', sans-serif;
  }
  
  html,
  body {
    width: 100%;
    height: 100%;
    background-image: url(../fundo.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.comecarJogo{
    width: 100%;
    max-width: 700px;
    padding: 0 2%;
  }
  .comecarJogo span{
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
  }
  .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: auto;
    padding: 2%;
    border: 1px solid rgba(0, 128, 0, 0.544);
    background-color: rgba(240, 248, 255, 0.427);
    backdrop-filter: blur(3px);
  }
  .container img{
    width: 30%;
  }
  .info{
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .container input{
    width: 100%;
    margin: 5px auto;
    max-width: 350px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
  }
  .container input[type=text]{
    padding: 0 8px;
    height: 37px;
    border: 1px solid red;
  }
  .container input[type=submit]{
    height: 35px;
    background-color: red;
    color: white;
    border: 1px solid black;
    cursor: pointer;
  }