:root {
  --content-width: 75rem;

  /* Tailwind colors */
  --color-gray-50: oklch(0.984 0.003 247.858);
  --color-gray-100: oklch(0.968 0.007 247.896);
  --color-gray-200: oklch(0.929 0.013 255.508);
  --color-gray-300: oklch(0.869 0.022 252.894);
  --color-gray-400: oklch(0.704 0.04 256.788);
  --color-gray-500: oklch(0.554 0.046 257.417);
  --color-gray-600: oklch(0.446 0.043 257.281);
  --color-gray-700: oklch(0.372 0.044 257.287);
  --color-gray-800: oklch(0.279 0.041 260.031);
  --color-gray-900: oklch(0.208 0.042 265.755);
  --color-gray-950: oklch(0.129 0.042 264.695);

  /* Tailwind Purple Colors */
  --color-purple-50: oklch(0.977 0.014 308.299);
  --color-purple-100: oklch(0.946 0.033 307.174);
  --color-purple-200: oklch(0.902 0.063 306.703);
  --color-purple-300: oklch(0.827 0.119 306.383);
  --color-purple-400: oklch(0.714 0.203 305.504);
  --color-purple-500: oklch(0.627 0.265 303.9);
  --color-purple-600: oklch(0.558 0.288 302.321);
  --color-purple-700: oklch(0.496 0.265 301.924);
  --color-purple-800: oklch(0.438 0.218 303.724);
  --color-purple-900: oklch(0.381 0.176 304.987);
  --color-purple-950: oklch(0.291 0.149 302.717);

  /* Tailwind Stone Colors */
  --color-stone-50: oklch(0.985 0.001 106.423);
  --color-stone-100: oklch(0.97 0.001 106.424);
  --color-stone-200: oklch(0.923 0.003 48.717);
  --color-stone-300: oklch(0.869 0.005 56.366);
  --color-stone-400: oklch(0.709 0.01 56.259);
  --color-stone-500: oklch(0.553 0.013 58.071);
  --color-stone-600: oklch(0.444 0.011 73.639);
  --color-stone-700: oklch(0.374 0.01 67.558);
  --color-stone-800: oklch(0.268 0.007 34.298);
  --color-stone-900: oklch(0.216 0.006 56.043);
  --color-stone-950: oklch(0.147 0.004 49.25);

  /* Tailwind Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --shadow-outline: 0 0 0 3px rgba(88, 0, 255, 0.5);

  /* Colors */
  --bg-color: var(--color-stone-50);
  --dot-color: var(--color-stone-300);

  /* Dimensions */
  --dot-size: 2px;
  --dot-space: 32px;

  --main-link-color: var(--color-purple-600);

}

*,
*:after,
*:before{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";;
  background:
		linear-gradient(90deg, var(--bg-color) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center,
		linear-gradient(var(--bg-color) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center,var(--dot-color);
	background-size: var(--dot-space) var(--dot-space);
}

h1, h2, h3 {
  font-family: "Fugaz One", sans-serif;
  color: var(--color-gray-700);
}

p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  color: var(--color-gray-800)
}

.f-subheadline-ns {
  color: var(--color-gray-700);
}

h5 {
  font-weight: 400;
  color: var(--color-gray-800);
}

h6 {
  font-weight: 400;
  font-size: 0.5em;
  color: var(--color-gray-800);
}

ul li {
  list-style: disc;
  list-style-position: outside;
  margin: 0 2rem 0.75rem;
}

ol li {
  /* list-style: disc; */
  list-style-position: outside;
  margin: 0 2rem 0.75rem;
}

a {
  color: currentColor;
  font-weight: 600;
  color: var(--color-gray-900);
}

a:hover {
  color: #5800ff;
}

a sup {
  font-weight: 400;
}

a:hover sup {
  color: #fff;
  text-decoration: none;
}

i {
  color: var(--color-gray-700);
}

main a:hover {
  text-decoration: none;
  background-color: var(--main-link-color);
  color: white;
}

a:active {
  color: var(--main-link-color);
}

a.external {
}

strong, b {
  font-weight: 700;
}

img {
  /* width: 100%; */
}

.page {
  /* padding: 5vh 0vw 10vh; */
}
.page > * {
  /* max-width: var(--content-width); */
  margin: 0 auto;
}

.header {
  margin-bottom: 1.5rem;
}

.header a {
  position: relative;
  font-size: .875rem;
  text-decoration: none;
  letter-spacing: .05em;
  padding: .5rem 0;
}

.header .logo {
  display: block;
  margin-bottom: 1.5rem;
  padding: .5rem 0;
}

.header {
  background-color: var(--color-stone-100);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.my-cv:before {
  content: "\f15c";
}

.my-cv:hover {
  transform: translate(0px, 2px);
}

.my-cv:hover::before {
  content: "\f56d";
}
.my-cv:hover::after {
  font-family: sans-serif;
  position: absolute;
  margin-left: 4px;
  font-size: 12px;
  content: "Resume";
}


.menu a {
  margin: 0 .75rem;
}

.menu a[aria-current] {
  border-bottom: 3px solid var(--main-link-color);
}

@media screen and (min-width: 40rem) {
  .header .logo {
    margin-bottom: 0;
  }
  .header {
    flex-direction: row;
    justify-content: space-between;
  }
  .menu {
    margin-right: -.75rem;
  }
}


main {
  min-height: calc(100vh - 10rem);
}

.intro {
  padding: 1vh 0 6vh;
  text-align: center;
}

.intro h1 {
  position: relative;
  margin-bottom: 1rem;
  font-weight: 900;
  font-size: calc(1vw + 2rem);
  z-index: 1;
  animation: fade-in 1s ease-out;
}

.tags {
  display: inline;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-size: .85rem;
  background-color: var(--color-gray-700);
  color: #ffffffb0;
  padding: .2rem .2rem .1rem;
  border-radius: 4px;
}

.text {
  line-height: 1.5em;
  text-align: center;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5em;
  text-align: left;
}

.text figure {
  text-align: center;
  margin-bottom: 1.5em;
}

figcaption {
  display: inline-block;
  line-height: 1.5em;
}

.text blockquote p {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
  border-left: 4px solid #bfbfbf;
  padding: 1rem 1rem 1rem 1rem;
  margin-bottom: 3rem;
  background-color: var(--color-stone-100);
}
.text h1 {
  text-align: left;
  line-height: initial;
}
.text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-align: left;
  /* text-align: center; */
}
.text > *:first-child {
  margin-top: 0;
}
.text a {
  position: relative;
  font-weight: 400;
  z-index: 1;
  padding: 0px 2px;
}
.text figure a:hover{
  background-color: initial;
}

.text figure a:hover img {
  border: 1px solid var(--main-link-color);
}

.text img {
  display: block;
  margin: 0px auto;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.text figure.inline {
  display: inline-block;
  vertical-align: top;
}

.text figure.inline a {
  padding: 0;
}

.footer {
  padding: 1.5rem 5vw 10vh;
  text-align: center;
  max-width: var(--content-width);
  margin: 0 auto;
  line-height: 1.5em;
}
.footer a {
  display: inline-block;
  font-size: .875rem;
}
.footer > a {
  margin-bottom: 1.5rem;
  border-top: 2px solid #000;
  width: 16.5rem;
  padding-top: .5rem;
}

.social a {
  padding: 0 .1rem;
  margin: 0 1rem;
}

/* .social a .extLink {
  opacity: 0;
  font-size: 0.75rem;
  position: absolute;
  margin-left: 5px;
}

.social a:hover .extLink {
  opacity: .75;
} */


/* .extLink:hover::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  padding: 0px 4px;
  font-size: .6rem;
  color:#5800ff;
  vertical-align: super;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  position: absolute;
  margin-top: 0px;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
} */

.social a:hover {
  background: #5800ff;
  color: #fff;
  text-decoration: none;
}

/* Animations */

@keyframes fade-in {
  0%   {opacity: 0;}
  100% {opacity: 1;}
}

/* sup {
  vertical-align: super;
} */


@media print {
  p, .text, li { 
    font-size: 0.6rem;
    line-height: 0.9rem;
  }

  .w-60-print {
    width: 60%;
  }

  .w-50-print {
    width: 50%;
  }
  .w-30-print {
    width: 30%;
  }
  .dib-print {
    display: inline-block;
  }
  .mr4-print {
    margin-right: 2em;
  }

  @page { 
    margin: 0.5in 0.25in; 
  }

  footer { display: none; }
}