.entry-wrapper {
    width: calc(60% - 2rem - 2px);
    height: calc(350px - 2rem - 2px);
    background-color: #272727;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #4B4B4B;
}

.translate {
    color: #BFBFBF;
}

    .translate.active {
        cursor: pointer;
        color: #FFFF00;
    }

    .translate:after {
        content: '\25BA';
        font-size: 1rem;
    }

#command-wrapper {
    display: block;
}

    #command {
        background-color: #000;
        -webkit-appearance: none;
        outline: none;
        border-width: 0;
        color: #fff;
        font-size: 1rem;
        text-transform: uppercase;
        font-family: "PT Mono", monospace, system;
        line-height: 1rem;
        padding: .5rem;
        width: 100%;
        height: 7rem;
    }

    #submit {
        display: block;
        color: #000;
        background-color: #0f0;
        margin-left: auto;
        font-family: "Inconsolata", sans-serif;
        font-size: 1rem;
        line-height: 1rem;
        outline: none;
        -webkit-appearance: none;
        border: none;
        text-transform: uppercase;
        padding: .5rem 1.5rem;
    }

        #submit:active {
            background-color: #0a0;
        }

@media(max-width: 600px) {
    .translate:after {
        font-size: .5rem;
    }

    .entry-wrapper {
        width: calc(100% - 2rem - 2px);
    }

    #command {
        color: #fff;
        font-size: .75rem;
        line-height: .75rem;
        padding: .25rem;
        height: 3rem;
    }

}

@media(max-height: 600px) {
    .entry-wrapper {
        width: calc(100% - 1rem - 2px);
        padding: .5rem;        
        height: 124px;
    }

    .translate:after {
        font-size: .5rem;
    }

    #submit {
        display: block;
        color: #000;
        background-color: #0f0;
        margin-left: auto;
        font-family: "Inconsolata", sans-serif;
        font-size: .5rem;
        line-height: 1rem;
        outline: none;
        -webkit-appearance: none;
        border: none;
        text-transform: uppercase;
        padding: .25rem .5rem;
    }

    #command {
        font-size: .75rem;
        line-height: .75rem;
        padding: .5rem;
        height: 1.5rem;
    }
}
