@import url(https://fonts.googleapis.com/css?family=Lato:400,700);

:root {
  --main-light-color: #eee;
  --dark-blue: #0c0e24;
  --light-blue: #919aff;
}

a:link, a:visited {
  color: var(--dark-blue);
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: var(--dark-blue);
    color: #fff;
  }

  a:link, a:visited {
    color: var(--light-blue);
  }  
}

body {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;

}

.header-container {
  max-width: 750px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.headshot {
  width: 200px;
  border-radius: 50%;
  margin: 0 0 20px 0;
}

@media (min-width: 750px) {
  .header-container {
    flex-direction: row;
    text-align: left;
  }

  .headshot {
    margin: 0 50px 0 0;
  }  
}


.text-section {
  border-top: 1px solid var( --main-light-color);
  max-width: 750px;
  margin: 50px auto;
  padding: 30px 20px 0;
}

@media (min-width: 750px) {
  .text-section {
    padding: 30px 0 0;
  }
}

.text-section p {
  font-size: 1rem;
  line-height: 1.6rem;
}

.text-section h2 {
  margin: 0;
  font-size: 1.4rem;
}

.text-section h5 {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.text-section h6 {
  margin: 0;
}
