html {
  font-size: 22px;
}

body {

  font-family: 'Spartan', sans-serif;

}


label {

  padding: 20px;

}

h1 {
  text-align: center;
  color: #d0416e;
  font-size: 45px;
  margin-top: .5rem;
  margin-bottom: .5rem;
}

p {

  color: black;
  font-size: 16px;
  line-height: 150%;
  margin-top: .5rem;
  margin-bottom: .5rem;

}

form {
  /* Center the form on the page */
  margin: 0 auto;
  width: 500px;
  /* Form outline */
  padding: 1em;

}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

form li+li {
  margin-top: 1em;
}

label {
  /* Uniform size & alignment */
  display: inline-block;
  width: 90px;
  text-align: right;
  padding-left: 8px;
  color: black;
  margin-right: 30px;
}

input,
textarea {
  /* To make sure that all text fields have the same font settings
     By default, textareas have a monospace font */
  font: 1em sans-serif;

  /* Uniform text field size */
  width: 300px;
  box-sizing: border-box;

  /* Match form field borders */
  border: 1px solid #999;
  border-radius: 5px;
}

input:focus,
textarea:focus {
  /* Additional highlight for focused elements */
  border-color: #000;
}

textarea {
  /* Align multiline text fields with their labels */
  vertical-align: top;

  /* Provide space to type some text */
  height: 5em;
}



.contacticons {

  position: relative;
  left: 50%;
}