@media screen and (max-width: 600px) {
  #inicial {
    float: none !important;
  }

  .logo {
    font-size: 30px !important;
  }

  #inicial {
    font-size: 1.2rem !important;
  }

  #final {
    font-size: 1.2rem !important;
    padding-top: 5px !important;
    margin-right: -8px !important;
  }

  #inicio,
  #fim {
    padding: 1px !important;
    font-size: 1rem !important;
    width: 100px !important;
  }

  #titulo {
    padding-top: 40px !important;
    font-size: 24px !important;
  }

  .novoSorteio {
    font-size: 1.1rem !important;
    padding-top: 40px !important;
    margin-left: 40px !important;
  }

  #aliasNS {
    font-size: 1rem !important;
  }

  .placar {
    padding-top: 20px !important;
    margin-left: 20px !important;
  }

  .dig6,
  .dig5,
  .dig4,
  .dig3,
  .dig2,
  .dig1 {
    height: 70px !important;
    width: 40px !important;
    font-size: 60px !important;
  }

  .alavanca {
    height: 160px !important;
    width: 35px !important;
    margin-top: -25px !important;
    margin-left: 260px !important;
  }

  #emojiCel {
    margin-top: -35px !important;
    display: block !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 50% !important;
    height: 200px !important;
  }

  .esquerda,
  .direita {
    display: none;
  }
}

/* ********* Final do @media screen max-width ************* */

@media screen and (max-height: 600px) {
  .topo {
    margin-top: 2% !important;
  }

  .logo {
    font-size: 36px !important;
  }

  .selecao {
    font-size: 1rem !important;
    padding-top: 10px !important;
  }

  #inicio,
  #fim {
    padding: 1px !important;
    font-size: 1rem !important;
    width: 100px !important;
  }

  #titulo {
    padding-top: 10px !important;
    font-size: 24px !important;
  }

  .novoSorteio {
    margin-left: 30px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  #aliasNS {
    font-size: 1rem !important;
  }

  .dig6,
  .dig5,
  .dig4,
  .dig3,
  .dig2,
  .dig1 {
    width: 70px !important;
    height: 70px !important;
    font-size: 60px !important;
  }

  .alavanca {
    width: 35px !important;
    height: 160px !important;
    margin-top: -45px !important;
    margin-left: 420px !important;
  }
}

/* ********* Final do @media screen max-height ************ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(#87CEEB, #E0F6FF);
  overflow: hidden;
}

.topo {
  text-align: center;
  margin-top: 8%;
}

.logo {
  color: #0c6438;
  font-weight: bold;
  font-size: 72px;
}

.selecao {
  padding-top: 60px;
  font-size: 1.5rem;
}

#inicial {
  float: left;
}

#final {
  margin-right: -30px;
}

#inicio,
#fim {
  padding: 2px;
  font-size: 1.5rem;
  width: 150px;
  text-align: center;
}

.selecao ::placeholder {
  font-size: 0.8rem;
  color: white;
}

.entrada:focus {
  border-radius: 10px;
  background-color: rgba(0, 0, 255, 0.123);
}

.entrada {
  border-radius: 5px;
  background-color: rgba(0, 0, 255, 0.397);
}

#titulo {
  padding-top: 40px;
  font-size: 48px;
  font-weight: 900;
}

.novoSorteio {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 900;
}

#aliasNS {
  padding-right: 10px;
  font-size: 1.5rem;
  font-weight: 100;
}

.onOff {
  background-color: green;
  color: white;
  padding-left: 5px;
  padding-right: 5px;
}

.placar {
  position: absolute;
}

.dig6,
.dig5,
.dig4,
.dig3,
.dig2,
.dig1 {
  border: 1px solid green;
  height: 150px;
  width: 100px;
  float: left;
  display: flex;
  justify-content: center;
  place-items: center;
  font-size: 102px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#dig6Gif,
#dig3Gif {
  background-image: url(../imagens/gifPlacar/1.gif);
}

#dig5Gif,
#dig2Gif {
  background-image: url(../imagens/gifPlacar/2.gif);
}

#dig4Gif,
#dig1Gif {
  background-image: url(../imagens/gifPlacar/3.gif);
}

.alavanca {
  height: 300px;
  width: 70px;
  margin-top: -75px;
  margin-left: 600px;
  background-image: url(../imagens/alavanca/alavanca0.webp);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  cursor: pointer;
}

.esquerda {
  background-repeat: repeat-y;
  background-position: center;
  background-size: 50%;
  width: 30%;
  height: 100%;
}

.direita {
  background-repeat: repeat-y;
  background-position: center;
  background-size: 50%;
  width: 30%;
  height: 100%;
}