.transliterator {
    width: 100%;
    max-width: 800px;
    height: 200px;
    padding: 15px;
    font-size: 20px;
    background-color: white;
    display: block;
    margin: 20px auto;
    box-sizing: border-box;
    resize: vertical;
    border-color: #bbb;
}
.char-limit-message {
    text-align:center;
    color: red;
    margin: -.5em auto 1em auto;
    font-size: .8em;
    
}
#convertirButton button {
    position: relative;
    border: none;
    padding: 1em;
    font-weight: bold;
    transition: 0.2s;
    border-radius: 5px;
    letter-spacing: 1px;
    box-shadow: #000849 0px 7px 2px, #000 0px 8px 5px;
    user-select:none;

    &:hover {
        opacity: 1;
    }
    
    &:active {
        top: 4px;
        box-shadow: darkgray 0px 3px 2px,#000 0px 3px 5px;
        cursor: grab;
    }
}