/**
 * @license
 * Author: Collin Grimm
 * Email: collins.geek@gmail.com	
 * Copyright (C) 2016 - Present Collin Grimm
 * 
 * This Source Code is subject to the terms of the MIT License.
 * If a copy of the MIT License was not distributed with this file, You can
 * obtain one at https://collingrimm.com/LICENSE.txt
 * 
 * All the image files on this page are subject to the above copyright
 * No image should be used anywhere or reproduced without obtaining 
 * a permit or license from the author
 */
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono:300,400");
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,700");
@font-face {
  font-family: 'Source Serif Pro';
  font-weight: 200 900;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("../css/fonts/SourceSerif4Variable-Roman.ttf.woff2") format("woff2");
}
@font-face {
  font-family: 'Source Serif Pro';
  font-weight: 200 900;
  font-style: italic;
  font-stretch: normal;
  font-display: swap;
  src: url("../css/fonts/SourceSerif4Variable-Roman.ttf.woff2") format("woff2");
}
html {
  padding: 0px;
  margin: 0px;
}

html,
body {
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  font-family: "Source Serif Pro", monospace, sans-serif;
  font-size: 16px;
  color: #28313d;
  background: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: #50627b;
}

::-webkit-scrollbar-button {
  display: none;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #28313d;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25ch;
}
a:hover {
  text-decoration-style: dashed;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  pointer-events: none;
  user-select: none;
}

rt {
  user-select: none;
}

.container {
  padding: 5px;
  margin: auto 220px;
}

.header {
  padding: 72px 0 128px;
  margin: 0;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.name-logo-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 18px;
  color: #28313d;
  font-style: italic;
  text-decoration: underline;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
}

.nav {
  display: inline-block;
}

.mobile-nav {
  display: none;
}

.nav-items {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 18px;
  color: #28313d;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-items .nav-item {
  padding: 0;
  margin: 0;
}
.nav-items .nav-item-divider {
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
  vertical-align: middle;
}

.heading-text {
  font-family: "Source Serif Pro", monospace, sans-serif;
  font-size: 3rem;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 96px;
}

.section-divider {
  border: none;
  border-bottom: 1px solid;
  margin-bottom: 48px;
}

.page-content {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.pg-content-l > * {
  max-width: 650px;
  margin: auto;
  word-wrap: break-word;
}
.pg-content-l > * + * {
  margin-top: 32px;
  margin-bottom: 0;
}

.highlight {
  background-color: #d1e6ff;
  padding: 0 4px;
  display: inline-block;
  border-radius: 4px;
}

.role-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
}
.role-info .role-title {
  padding: 0;
  margin: 0;
}
.role-info .role-time {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.85rem;
}

.multiple-roles {
  padding: 0 0 0 1rem;
  margin: 0;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 18px;
  padding-top: 8rem;
}

@media screen and (max-width: 820px) {
  .container {
    padding: 5px;
    margin: 16px;
  }

  .header {
    padding: 32px 0 40px;
    margin: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
  }

  .mobile-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    font-size: 1.5rem;
    font-weight: 300;
    align-self: flex-end;
    cursor: pointer;
  }

  .name-logo-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: #28313d;
  }

  .nav--visible {
    display: block !important;
  }

  .nav-close .hamburger {
    padding-top: 21px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0%;
    background: #dfdfdf;
    right: 0%;
    padding: 2rem;
    height: 100vh;
    width: 60%;
  }

  .nav-items {
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: flex-end;
    gap: 1.75rem;
    font-size: 18px;
    color: #28313d;
    flex-direction: column;
    margin-top: 4rem;
  }

  .heading-text {
    font-family: "Source Serif Pro", monospace, sans-serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 48px;
  }

  .page-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.4;
  }

  .experience-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
  }

  .role-info .role-time {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 0.65rem;
  }

  .footer {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    padding-top: 3rem;
  }
}
