textarea {
    resize: none;
    color: #666;
    padding: 1rem;
    margin: 1rem 0;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    /* caret-color: #666; */
    border-radius: .25rem;
    border: 1px solid #444;
    width: 100%;
    display: block;
    background-color: #222;
    outline: none;    
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

textarea::placeholder {
    color: #444;
}

button {
    opacity: .9;
    cursor: pointer;
    display: inline-block;
    color: ghostwhite;
    background-color: mediumpurple;
    border: none;
    border-radius: .25rem;
    padding: .5rem 2rem;
    outline: none;    
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

button:hover {
    opacity: 1;
}