/* -------------------------------
   S E C T I O N  :  C O N T A C T
   ------------------------------- */

section#contact {
  background-color: #313539;
  color: white;
  font-size: 30px;
}

section#contact h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  font-family: 'Droid Serif', Helvetica, Arial, sans-serif;
  color: gray;
}

section#contact grid div input {
  display: block;
  width: 80%;
  border: 5px solid transparent;
  padding: 20px;
  margin: 10px auto;
  border-radius: .5rem;
}

section#contact grid div textarea {
  display: block;
  width: 80%;
  height: 211px;
  border: 5px solid transparent;
  padding: 20px;
  margin: 10px auto;
  border-radius: .5rem;
}

section#contact grid div button {
  margin: 10px auto;
}

section#contact grid div#hint {
  display: none;
  width: 60%;
  margin: 10px auto;
  text-align: center;
  white-space: nowrap;
  padding: 20px 40px;
  font-weight: 700;
  font-size: 20px;
  background-color: lawngreen;
  border: 3px solid white;
  border-radius: .5rem;
  color: white;
}

section#contact grid div#hint.bad {
  background-color: red;
  border: 3px solid white;
}

@media only screen and (min-width: 768px) {

  section#contact grid {
    display: grid;
    grid-template-columns: 50% 50%;
    display: -ms-grid;
    -ms-grid-columns: 50% 50%;
  }

  section#contact grid div input {
    float: right;
    margin-right: 10px;
  }

  section#contact grid div textarea {
    float: left;
    margin-left: 10px;
  }

  section#contact grid div#name {
    grid-column: 1/2;
    grid-row: 1/2;
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }

  section#contact grid div#email {
    grid-column: 1/2;
    grid-row: 2/3;
    -ms-grid-column: 1;
    -ms-grid-row: 2;
  }

  section#contact grid div#phone {
    grid-column: 1/2;
    grid-row: 3/4;
    -ms-grid-column: 1;
    -ms-grid-row: 3;
  }

  section#contact grid div#message {
    grid-column: 2/3;
    grid-row: 1/4;
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
  }

  section#contact grid div#button {
    grid-column: 1/3;
    grid-row: 4/5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    -ms-grid-row: 4;
  }

  section#contact grid div#hint {
    grid-column: 1/3;
    grid-row: 4/5;
    -ms-grid-column-span: 3;
    -ms-grid-row: 4;
  }

}
