html {
  height: -webkit-fill-available;
}

:root {
  font-size: 14px;
}

body {
  background: #011627;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "JetBrains Mono";
  font-weight: 200;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  /* mobile viewport bug fix  - don't put before 100vh*/
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  padding: 15px;
}

article {
  text-align: center;
  max-width: 800px;
}

footer {
  text-align: right;
  padding: 20px;
}

.linkedIn svg {
  fill: #fff;
  margin-top: 20px;
}

.linkedIn a:hover {
  opacity: 0.8;
}

.tagline {
  font-size: 4rem;
  font-weight: bold;
}

h1 {
  font-size: 3.2rem;
  font-weight: bold;
}

a {
  text-decoration: underline;
  color: #fff;
}

a:hover {
  opacity: 0.8;
  cursor: pointer;
}

.subline {
  font-size: 1.8rem;
  line-height: 2rem;
}

p,
ul li {
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: left;
}

.homepage p {
  text-align: center;
}

.date {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.5rem;

}

.image-caption {
  text-align: left;
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.5rem;
  max-width: 600px;
  margin: 0.5rem auto 0 auto;
}

@media only screen and (max-width: 600px) {
  article {
    max-width: 100%;
  }

  h1 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 2.8rem;
  }

  .subline {
    font-size: 1.4rem;
    line-height: 1.9rem;
  }

  p,
  ul li {
    font-size: 1rem;
    line-height: 1.4rem;
    text-align: left;
  }

  footer {
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */