.contactLine{
  text-align: center;
  font-size: 25px;
}

/* Style inputs with type="text", select elements and textareas */
input[type="text"],
select,
textarea {
  width: 100%; 
  padding: 12px; 
  border-top: 2px solid black; /* black border */
  border-radius: 4px; 
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; 
  margin-bottom: 16px; 
  resize: vertical; /*resize the textarea */
  color: black;
}

/* Style the submit button with a specific background color etc */
input[type="submit"] {
  background-color: purple;
  padding: 20px 28px;
  border: none;
  border-radius: 4px;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type="submit"]:hover {
  background-color: indigo;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  padding: 20px;
}

