@keyframes pisca{
    0% { opacity: 0.2;}
    50% {opacity: 1;}
    100% {opacity: 0.2;}
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

.urna {
    background-color: #dbd5c9;
    padding: 30px;
    display: flex;
}

.tela {
    width: 450px;
    height: 320px;
    background: linear-gradient(to right, #E8E8E8, #C1C1C1);
    border: 2px solid #555;
    display: flex;
    flex-direction: column;
}

.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;
    margin: 10px;
    cursor: pointer;
    box-shadow: 3px 3px 0px #555 ;
}

.botao--branco{
    background-color: #FFF;
    color: #000;
    font-size: 15px;
}

.botao--corrige{
    background-color: #F09046;
    color: #000;
    font-size: 15px;
}

.botao--confirma{
    background-color: #48C079;
    color: #000;
    font-size: 15px;
    width: 80px;
    height: 50px;
}

.d-1{
    flex: 1;
    display: flex;
}
.d-2{
    height: 50px;
    font-size: 14px;
    border-top: 2px solid #000;
    padding-left: 10px;
}
.d-1-left{
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.d-1-right{
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.d-1-1{
    height: 50px;
    display: flex;
    align-items: center;
}

.d-1-2{
    height: 50px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.numero{
     display: inline-block;
     width: 30px;
     height: 40px;
     border: 1px solid #000;
     text-align: center;
     line-height: 40px;
     font-size: 25px;
}

.pisca {
    animation-name: pisca;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.d-1-3{
    height: 50px;
}

.d-1-4{
    flex: 1;
    
}

.d-1-image{
    border: 1px solid #000;
    background-color: #FFF;
    text-align: center;
    font-size: 14px;
}
.d-1-image img{
    width: 100%;
}

.d-1-image.small{
    width: 75%;
    height: auto;
    font-size: 12px;
}
