html {
  box-sizing: border-box;
  height: 100%;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 300;
  color: #2e435d; /* darkNavy */
  background-color: #f5f5f7; /* offWhite */
  font-size: 16px;
  line-height: 1.5;
}

/* RESETS */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #2e435d;
  border-bottom: 4px solid #afd1f1;
  transition: border-bottom-color 250ms ease-in-out;
}

a:hover {
  border-bottom: 4px solid #275c99;
}

p {
  margin: 0;
}

button {
  padding: 0;
  background: none;
  border: none;
  outline: none;
}

/* Remove Safari IOS shadow */
input[type=text] {
  -webkit-appearance: none;
  appearance: none;
}

::-webkit-input-placeholder {
  color: #c6c7cd; /* medLightGrey */
  font-style: italic;
}
::-moz-placeholder {
  color: #c6c7cd;
  font-style: italic;
  opacity: 1;
}
:-ms-input-placeholder {
  font-style: italic;
  color: #c6c7cd;
}

