h1,h2,p{
    color: #ffffff;
}
@media screen and (max-width: 767px) {
    h1,h2,p{
       margin: 20px 10px;
    }
}

.customTextArea {
    /*display: flex;*/
    /*width: 550px;*/
    /*margin: 100px auto 0;*/
}
.customTextArea textarea {
    resize: none;
    padding: 10px 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 0;
    transition: box-shadow 0.5s;
}
.customTextArea  textarea:focus {
    outline: none;
    box-shadow: 0 0 15px #36383f inset;
}

.customTextArea ul {
    background: #36383f;
    width: 50px;
    padding: 0;
    margin: 0;
    list-style: none;
    border-radius: 0 5px 5px 0;
}

.customTextArea button {
    background: #111;
    color: #fff;
    width: 100px;
    line-height: 30px;
    text-align: center;
    padding: 5px 10px;
    margin: 10px auto 0;
    border: 0;
    cursor: pointer;
    transition: background-color 0.5s;
    border-radius: 3px;
}
.customTextArea button:hover {
    background: #666;
}
.customTextArea button:focus {
    outline: none;
    box-shadow: 0 0 15px inset #000;
}

