

.contactus {
    width: 50%;
    margin-left: 290px;
    margin-bottom: 40px;
    padding: 20px 10px 20px;

    
}

.put-feedback-name-in-here {
    
    background-color:lightblue;
    color: white;
    border:5px 5px solid:black;
    transition: all 0.3s;
    padding: 16px;
    margin-bottom: 18px;
    margin-left: auto;
    margin-right: auto;
    width:100%;
    box-sizing: border-box;
    outline:0;
  }
  .put-feedback-name-in-here:hover { 
      border:20px solid blue; 
  }
  textarea {
    height: 150px;
    line-height: 180%;
    resize:vertical;
  }
  [type="submit"] {
  	font-family:altivo, sans-serif;
    width: 100%;
    background-color:red;
    border:0;
    cursor:pointer;
    color: lightblue;
    font-size: 24px;
    padding-top:20px;
    padding-bottom:20px;
    transition: all 0.4s;
    margin-top:-6px;
    font-weight:700;
    text-align: center;

  }
  [type="submit"]:hover { 
      background-color: blue; 
      font-family: altivo, sans-serif;
      font-size: 36px;
      color: white;
      letter-spacing: 4.5vw;
      text-align: center;

  }

  @media(max-width: 570px) {

    .put-feedback-name-in-here {
      display: none;
    }
    [type="submit"] {
      display: none;
    }
  }

  