@charset "UTF-8";
:root {
  --body-font-size: 0.9rem;
  --h1-font-size: 2em;
  --h2-font-size: 1.2em;
  --body-div-flex-direction: column;
  --block-img-max-width: 200px;
  --cols-gap: auto;
  --cols-flex-direction: column;
  --menu-flex-direction: column;
}

@media only screen and (min-width: 750px) {
  body {
    --body-font-size: 1rem;
    --body-div-flex-direction: row;
    --h1-font-size: 3em;
    --h2-font-size: 1.6em;
  }
}
@media only screen and (min-width: 1000px) {
  body {
    --h1-font-size: 4em;
    --h2-font-size: 1.8em;
    --block-img-max-width: 300px;
    --cols-gap: 2em;
    --cols-flex-direction: row;
    --menu-flex-direction: row;
  }
}
body {
  font-family: "roboto", sans-serif;
  background: #1c2127;
  margin: 0px;
  font-size: var(--body-font-size);
}
body > div {
  flex-direction: row;
  font-weight: 400;
  font-style: normal;
  color: white;
  align-items: flex-start;
  display: flex;
  gap: 1em;
  align-items: stretch;
  flex-direction: var(--body-div-flex-direction);
  min-height: 100%;
}
body > div > div {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 2em;
}

h1 {
  margin: 0px;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: var(--h1-font-size);
}

h2 {
  margin: 0.3em 0em;
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: var(--h2-font-size);
}

h3 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

ul {
  margin: 0px;
  padding-left: 1em;
}
ul li {
  list-style-type: none;
}
ul li::before {
  content: "•";
  font-weight: bold;
  color: aqua;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.masthead {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.masthead h2 {
  color: #5ad0ba;
}

h1, .masthead h1 a {
  color: white;
  text-decoration: none;
}

.block {
  display: none;
}
.block.show {
  display: block;
}
.block .content {
  font-size: 1rem;
}
.block img {
  float: right;
  width: 50%;
  max-width: var(--block-img-max-width);
  margin-top: 1em;
  margin-left: 1em;
  margin-bottom: 1em;
}

.menu div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1px;
  letter-spacing: 0.2em;
}
.menu div a {
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: stretch;
  gap: 1px;
}
.menu div a > * {
  padding: 1em;
}
.menu div a > div {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  color: #1c2127;
  text-align: center;
  background: #5ad0ba;
  transition: background-color 0.25s;
}
.menu div a > span {
  display: none;
  color: white;
  background: #e54623;
}
.menu div.main a div {
  font-weight: 600;
}
.menu div.resume {
  display: flex;
  margin-top: 0.5em;
  gap: 0.5em;
  flex-direction: var(--menu-flex-direction);
}
.menu div.resume a {
  padding: 0.5em 1em;
  background-color: #313a45;
  border-radius: 2em;
  align-self: stretch;
  justify-content: center;
  color: white;
}
.menu div.resume a:hover {
  background-color: #475362;
}
.menu div a:hover div, .menu div a.active > div {
  background-color: white;
}
.menu.big .main {
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
}
.menu.big .main > a span {
  display: flex;
}

.bio {
  background-color: gainsboro;
  color: #1c2127;
  flex: 0 0 200px;
  font-size: 1rem;
}
.bio p, .bio hr {
  margin: 0px;
}
.bio hr {
  border-top-color: white;
}
.bio ul li::before {
  color: #e54623;
}
.bio a {
  text-decoration: none;
  color: #1c2127;
}
.bio a:hover {
  color: #e54623;
}
.bio img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.topics {
  flex: 1 1 0;
  align-items: stretch;
  max-width: 800px;
  margin: auto;
}

.cols {
  display: flex;
  flex-direction: var(--cols-flex-direction);
  gap: var(--cols-gap);
}
.cols > div {
  flex: 1 1 0;
}

.links {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
}
.links svg {
  width: 1.2em;
  height: 1.2em;
}
.links svg line, .links svg path, .links svg .links polyline {
  fill: none;
  stroke: white;
  stroke-width: 2px;
}
.links a {
  text-decoration: none;
  background-color: #e54623;
  color: white;
  border-radius: 2em;
  padding: 0.5em 1em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  gap: 0.25em;
  align-items: center;
}
.links a:hover {
  background-color: #5ad0ba;
  color: black;
}
.links a:hover line, .links a:hover path, .links a:hover polyline {
  stroke: black;
}

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