:root {
  --primary-btns: 25px;
  --secundary-btns: 15px;
  --secundary-btns-color: #000;
  --heigth-card: 50px;
}
@keyframes pisca {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.flex-aligne-center {
  display: flex;
  align-items: center;
}
.flex-colum {
  display: flex;
  flex-direction: column;
}
.dev-header {
  background-image: linear-gradient(
    to left,
    #057c46,
    #9bb61b,
    #f8be00,
    #00b4fc,
    #ebebeb
  );
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 25px;
}

.logo {
  background-image: url("../img/logo.png");
  background-size: cover;
  background-position: center;
  height: 80px;
  width: 150px;
}
.card-titulo {
  text-align: center;
}
h1 {
  text-transform: uppercase;
  color: #403a3a;
}
.card-titulo a {
  text-decoration: none;
  text-transform: uppercase;
  color: #131313;
}
.card-titulo span {
  display: none;
}
.card-titulo span:hover {
  display: none;
  display: block;
}
.card-titulo a:hover {
  color: rgb(26, 97, 0);
  font-weight: 600;
  animation-name: pisca;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.icon {
  display: flex;
  align-items: center;
}
.icon i {
  margin-left: 10px;
  font-size: 2.4rem;
  color: #ffffff;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.urna {
  background-color: #dbd5c9;
  padding: 30px;
  display: flex;
}

.tela {
  width: 500px;
  height: 320px;
  background: linear-gradient(to right, #e8e8e8, #c1c1c1);
  border: 2px solid #555;
  display: flex;
  flex-direction: column;
}
.d-1 {
  flex: 1;
  display: flex;
}

/* Lado esquerdo */

.d-1-left {
  flex: 1;
  padding-left: 20px;
}
.d-1-card1,
.d-1-card2,
.d-1-card3 {
  height: var(--heigth-card);
}
.d-1-card3 {
  display: flex;
  align-items: center;
}
.d-1-card2 {
  justify-content: center;
}

.numero {
  display: inline-block;
  height: 40px;
  width: 40px;
  border: 1px solid rgb(0, 0, 0);
  text-align: center;
  line-height: 40px;
  font-size: 25px;
}
.pisca {
  animation-name: pisca;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.d-1-card4 {
  flex: 1;
  line-height: 30px;
}

/* Lado direito */

.d-1-right {
  width: 90px;
  align-items: flex-end;
}
.d-1-img {
  border: 1px solid #000;
  background-color: #fff;
  text-align: center;
  font-size: 14px;
}
.d-1-img img {
  width: 100%;
}
.d-1-img.small {
  width: 86%;
  font-size: 12px;
}
.d-2 {
  height: 50px;
  font-size: 14px;
  border-top: 2px solid #000;
  padding-left: 10px;
}
.teclado {
  background-color: #403a3a;
  margin-left: 30px;
}
.teclado--linha {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.teclado--botao {
  width: 70px;
  height: 40px;
  background-color: #000;
  color: #fff;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 10px;
  box-shadow: 3px 3px 0 #555;
  border-radius: 2px;
}
.botao--branco,
.botao--corrige,
.botao--confirma {
  font-size: var(--secundary-btns);
  color: var(--secundary-btns-color);
  padding: 0 39px;
}
.botao--branco {
  background-color: #fff;
}
.botao--corrige {
  background-color: #f09046;
}
.botao--confirma {
  background-color: #48c079;
  width: 90px;
  height: 50px;
}
.aviso-grande {
  font-size: 40px;
  font-weight: bold;
  margin-top: 10px;
}
.aviso--gigante {
  font-size: 70px;
  font-weight: bold;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .container {
    display: flex;
    padding: 10px;
  }
  .urna {
    flex-direction: column;
    width: 100%;
  }
  .tela {
    width: 100%;
  }
  .teclado {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 365px) {
  .urna {
    padding: 0;
  }
  .teclado--botao {
    width: 60px;
    height: 35px;
    font-size: 22px;
  }
  .botao--branco,
  .botao--corrige,
  .botao--confirma {
    font-size: 12px;
  }
}
