body {
  margin: 0;
  padding: 10.625rem 0; /* 170px = 10.625rem */
  text-align: center;
  font-size: 4.5rem;

  font-family: 'News Gothic', 'Franklin Gothic Medium', Arial, Helvetica, sans-serif;
  color: #1E90FF; /* brighter DodgerBlue for more pop */
  background-color: #000;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000;
}

p {
  position: relative;
  z-index: 2;
  /* make the text visually pop */
  font-weight: 700;
  color: #1E90FF;
  text-shadow: 0 2px 6px rgba(0, 34, 102, 0.6), 0 1px 0 rgba(255,255,255,0.03);
  margin: 0 1rem;
  line-height: 1.05;
}

@media (max-width: 600px) {
  body { font-size: 2.2rem; padding-top: 6rem; padding-bottom: 6rem; }
}