#contenedor{
    padding: 40px;
}

#resultado{
    text-align: center;
    margin-bottom: 50px;
}

#botones{
    width: 80%;
    margin: 0px auto;
}

.boton{
    background: #2E86C1;
    margin: 15px;
    color: #fff;
    outline: none;
    border: none;
    height: 50px;
    font-size: 1.3rem;
    width: 120px;
    border-radius: 10px;
    transition: all 0.1s ease;
}

.boton:hover{
    transform: scale(1.1);
    background: #1D8348;
}

#limpiar{
    font-size: 1.3rem;
    outline: none;
    border: none;
    background: #F1C40F;
    height: 50px;
    width: 50%;
    margin: 0px auto;
    border-radius: 10px;
    transition: all 0.1s ease;
}

#limpiar:hover{
    background: #D4AC0D;
    transform: scale(1.1);
}