body,
html {
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 100%;
}
body {
  font-family: 'Lato', sans-serif;
  background-color: #f8f9fc;
}


h1 {
  font-family: 'futura', 'Lato', sans-serif;
  text-align: center;
  margin: 0;
  font-weight: 900;
  font-size: 72px;
  padding-top: 60px;
  -moz-text-stroke-width: 5px;
  -webkit-text-stroke-width: 5px;
  -moz-text-stroke-color: transparent;
  -webkit-text-stroke-color: transparent;
  background: linear-gradient(45deg, rgb(197, 41, 236) 25%, rgb(0, 117, 218) 75%);
  -moz-background-clip: text;
  -webkit-background-clip: text;
  color: #101010;
}

header {
  height: 300px;
  width: 100%;
  background-color: #101010;
  margin: 0;
  perspective: 500px;
  overflow: hidden;
}
@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
header:after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 200%;
  background: linear-gradient(#333 33%, #000 33%);
  background-size: 100% 3px;
  background-repeat: repeat-y;
  opacity: 0.4;
  animation: scanlines 30s ease infinite;
}
#grid {
  position: absolute;
  left: 0;
  top: -300px;
  width: 2880px;
  left: -720px;
  transform: rotateX(80deg);
  pointer-events: none;
}
@keyframes moveUp {
  to {
    transform: translateY(200px);
  }
}
line.horiz {
  animation: moveUp 10s steps(80) infinite;
  /* using steps because low framerate looks better lol */
}
.star {
  position: absolute;
  display: block;
  width: 2px;
  height: 2px;
  background-color: white;
  border-radius: 100%;
  /*box-shadow: 0px 0px 5px 1px white;*/
}
@media screen and (max-width: 680px) {
  h1 {
    padding-top: 83px;
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) {
  header {
    height: 150px;
  }
  h1 {
    font-size: 32px;
    -webkit-text-stroke-width: 3px;
    padding-top: 35px;
  }
  #grid {
    top: -350px;
  }
}
h2,
h3,
h4 {
  font-family: futura, 'sans-serif';
  font-weight: 500;
}
h2,
h3 {
  text-transform: lowercase;
}
h2 {
  color: #0075da;
  margin: 0 0 9px 0;
  font-size: 26px;
}
h3 {
  color: #0075da;
  margin: 0 0 10px 0;
  font-size: 22px;
}
h4 {
  margin: 0 0 0 0;
  color: #0075da;
  font-size: 18px;
}
h5 {
  margin: 0 0 0 0;
}
p {
  margin: 0 5px;
}
p,
li {
  line-height: 1.35;
}
.icon, .icon svg {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.printer {
  font-style: italic;
  margin-bottom: 7px;
}
.printer i {
  margin-right: 3px;
}
article {
  max-width: 700px;
  margin: 0 auto;
  padding: 10px;
  background-color: #f8f9fc;
  z-index: 5;
  position: relative;
}
article a,
article a:visited,
article a:hover {
  color: #c529ec;
  text-decoration: underline;
}
article a:hover {
  text-decoration: none;
}
section {
  padding: 10px;
  max-width: 700px;
  margin: 0 auto;
}
article section {
  padding: 0;
}
.education {
  min-height: 100px;
}
.education .concentrations {
  font-style: italic;
  margin-top: 10px;
  font-size: 12px;
}
.education img {
  width: 75px;
  display: inline;
  vertical-align: top;
  float: left;
  margin-right: 15px;
}
.skills li {
  margin-bottom: 6px;
}
.experience ul {
  list-style-type: none;
  padding: 0;
}
.experience li {
  margin-bottom: 10px;
}
.experience h4 {
  margin: 0 7px 5px 0;
}
.experience .date {
  display: block;
  font-style: italic;
  color: #606060;
  text-align: left;
  margin-top: 4px;
  margin-bottom: 4px;
}
.experience .location {
  float: left;
  font-style: italic;
  color: #606060;
  margin-top: 5px;
  margin-bottom: 5px;
  display: block;
}
.experience p {
  margin: 4px 0;
  clear: both;
}
.experience img {
  width: 75px;
  display: inline;
  vertical-align: top;
  float: left;
  margin-right: 15px;
  margin-top: 4px;
  padding-bottom: 5px;
}
.experience .info {
  max-width: 600px;
  overflow: none;
}
.do-not-call {
  margin: auto;
  max-width: 700px;
  margin-top: 5px;
  font-style: italic;
}
footer {
  font-size: 12px;
  padding: 10px;
  background-color: #01539a;
  color: #f8f9fc;
}
footer a,
footer a:visited,
footer a:hover {
  color: white;
  text-decoration: none;
  transition: color 0.7s ease;
}
footer a:hover {
  text-decoration: underline;
  color: #EEE;
}
footer h3 {
  color: white;
  max-width: 700px;
  margin: 0 auto 10px;
}
footer ul {
  max-width: 700px;
  list-style-type: none;
  padding-left: 0;
  margin: 0 auto;
}
footer ul li {
  padding: 5px 0;
}
footer ul li .icon, footer ul .icon svg {
  width: 13px;
  text-align: center;
  margin-right: 6px;
}
footer .icon path {
  fill: white;
}
@media (min-width: 430px) {
  footer ul {
    -webkit-column-count: 2;
    column-count: 2;
  }
  .experience .info {
    overflow: auto;
  }
}
@media (min-width: 675px) {
  .experience h4 {
    float: left;
  }
  .experience .date {
    float: right;
    text-align: right;
  }
  .experience .experience {
    display: inline;
  }
}
