body {
    background-color: lightgray;
    margin: 0;
    padding: 0;
}

h1 {
    color: #494949;
    font-size: 48px;
    font-family: 'Signika', sans-serif;
    padding-bottom: 10px;
    text-align: center;
}

.container {
    margin: auto;
    width: 60%;
}

textarea {
    margin:0;
    margin-left: -25px;
    height: auto;
    width: 100%;
    min-height: 300px;
    max-width: 100%;
    color: #999;
    font-weight: 300;
    font-size: 20px;
    font-family: 'Ubuntu', Helvetica, Arial, sans-serif;
    background: #fff;
    border-radius: 3px;
    line-height: 1em;
    border: none;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
    padding: 30px;
    -webkit-transition: height 2s ease;
    -moz-transition: height 2s ease;
    -ms-transition: height 2s ease;
    -o-transition: height 2s ease;
    transition: height 2s ease;
}

.buttonContainer {
    text-align: center;
    padding: 10px 0;
}

button {
    color: #494949 !important;
    text-transform: uppercase;
    text-decoration: none;
    background: #ffffff;
    padding: 20px;
    border: 1px solid #494949 !important;
    display: inline-block;
    transition: all 0.4s ease 0s;
}

button:hover {
    color: #494949 !important;
    background: lightgray;
    cursor: pointer;
    transition: all 0.4s ease 0s;
}

@media only screen and (max-width: 1200px) {
  .container{
      width: 90%;
  }
}