body{
    margin: 0;
    padding: 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    font-family: 'Lora', serif;
    font-weight: bolder;
}

.contact-title{
    margin-top: 50px;
    color: black;
    text-transform: uppercase;
    transition: all 4s ease-in-out;
}

.contact-title h1{
    font-size: 32px;
    line-height: 10px;
}

.contact-title h2{
    font-size: 16px;
}



form{
    margin-top: 50px;
    margin-left: 50px;
    transition: all 4s ease-in-out;
  }
  
  .form-control{
    width: 600px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid gray;
    color: #000;
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  input{
    height: 45px;
    width: 100px;
  }
  
  form .submit{
    background: #343A40;
    border-color: transparent;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    height: 50px;
    margin-top: 10px;
    max-width: 200px;
  }

  form .submit:hover{
    background-color: #A6A6A6;
    cursor: pointer;
  }

  /* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (max-width: 1100px) {
  input[type=text], select, textarea, input[type=email], textarea [name=message]   {
    width: 600px;
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 640px) {
  input[type=text], select, textarea, input[type=email], textarea [name=message]   {
    width: 400px;
  }
}
@media screen and (max-width: 991px) {
  /* start of large tablet styles */
  input[type=text], select, textarea, input[type=email], textarea [name=message]   {
    width: 500px;
  }
  
  }
  
  @media screen and (max-width: 767px) {
  /* start of medium tablet styles */
  input[type=text], select, textarea, input[type=email], textarea [name=message]   {
    width: 200px;
  }
  
  }
  
  @media screen and (max-width: 479px) {
  /* start of phone styles */
  input[type=text], select, textarea, input[type=email], textarea [name=message]   {
    width: 200px;
  }
  }  