/*Form CSS*/
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

input[type=text], input[type=number], input[type=tel], input[type=email], input[type=date], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}



input[type=submit] {
  background-color: #3C99DC;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 25%;
  
}

input[type=submit]:hover {
  background-color: #ddd;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.aboutUsPageText {
  /* Old Chrome, Safari, Opera */
  -webkit-column-count: 2; 
  -webkit-column-width: 100px;
    
  /* Old Firefox */
  -moz-column-count: 2;
  -moz-column-width: 100px;

  /* Statndard syntax */
  column-count: 2;
  column-width: 100px;
}

.aboutUsPageText {
    padding: 20px; 
}

@media only screen and (max-width: 600px) {
  .aboutUsPageText {padding: 10px; column-count: 1;}
}