.button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
  }

  .input
  {
    width: 70%;
    height: 900px;
    padding: 20px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    opacity: 0.7;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    resize: none;
  }

  .container 
  {
    display: flex;
    justify-content: center;
  }

  .headerText
  {
    padding: 30px;
    text-align: center;
    color: white;
    font-size: 50px;
    text-transform: uppercase;
    text-shadow: 0 0 2px black, 0 0 2px white;
    font-family: Georgia, serif;
  }

  .button 
  {
    border-radius: 4px;
    opacity: 0.9;
    background-color: #f4511e;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 36px;
    padding: 20px;
    transition: all 0.4s;
    cursor: pointer;
    margin: 30px;
    font-family: Georgia, serif;
    text-shadow: 0 0 2px black, 0 0 2px white;
  }
  
  .button span 
  {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .button span:after
  {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .button:hover span 
  {
    padding-right: 25px;
  }
  
  .button:hover span:after 
  {
    opacity: 1;
    right: 0;
  }