:root {
  --spacer: 20px; }

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased; }

body {
  margin: 0;
  font-size: 14px;
  font-family: 'Balto'; }

.hero {
  background: black;
  color: white;
  padding: 10px var(--spacer);
  width: calc(100vw - 40px);
  color: #F9F9F9;
  display: flex;
  gap: 10px;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 86vh; }

#toggleBtn {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid grey;
  position: absolute;
  top: 10px;
  left: 50vw;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  border-radius: 100px;
  padding: 4px 14px;
  border-color: grey;
  border-bottom: 2px solid grey;
  border-right: 2px solid grey;
  animation: btnTempt 3.5s linear infinite;
  backdrop-filter: blur(4px);
  cursor: pointer;
  font-family: 'Balto';
  font-size: 14px;
  transition: top 400ms ease-in, opacity 400ms ease-in;
  opacity: 1; }

#toggleBtn.invisible {
  top: -40px;
  opacity: 0;
  animation: none; }

@media screen and (max-width: 600px) {
  #toggleBtn {
    display: none; } }
@keyframes btnTempt {
  50% {
    transform: translate(-50%, 0px);
    border-bottom: 2px solid grey;
    border-right: 2px solid grey; }
  60% {
    transform: translate(calc(-50% + 1px), 1px);
    border-color: white;
    border-bottom: 1px solid grey;
    border-right: 1px solid grey; }
  65% {
    transform: translate(-50%, 0px);
    border-bottom: 2px solid grey;
    border-right: 2px solid grey; } }
h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 900px;
  margin-bottom: 10px; }

@media screen and (max-width: 900px) {
  h1 {
    font-size: calc((100vw - 40px)*40/860); } }
@media screen and (max-width: 599px) {
  h1 {
    font-size: 26px; }

  h1 br {
    content: " "; }

  h1 br:after {
    content: " "; } }
h2 {
  color: #A3A3A3;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  margin: 0px;
  margin-bottom: 6px; }

.section {
  padding: var(--spacer); }

.at-a-glance {
  display: flex;
  gap: 40px; }

@media screen and (max-width: 945px) {
  .at-a-glance {
    flex-wrap: wrap; }
    .at-a-glance > div {
      width: calc(33.33% - 40px); }
    .at-a-glance div:last-child {
      display: none; } }
@media screen and (max-width: 620px) {
  .at-a-glance > div {
    width: calc(50% - 40px); } }
h1 i {
  font-style: inherit;
  position: relative;
  transform: scaleY(0);
  top: 0px;
  left: 0px; }

i.on {
  border-radius: 50%;
  background-color: white;
  color: transparent; }

.hero.transition i {
  transition: top 200ms, left 200ms, transform 200ms !important; }

i.upsideDown {
  display: inline-block;
  transform: scaleY(-1) translateY(-20%); }

i.animated {
  animation: seesaw 600ms infinite; }

i.seesaw {
  transform-origin: center 103% !important; }

i.n7 {
  top: 0px;
  left: 0px; }

@keyframes seesaw {
  0% {
    top: 5px;
    color: white; }
  55.55% {
    color: #121212; }
  88.88% {
    color: grey; }
  70% {
    top: -20px; }
  100% {
    top: 5px;
    color: white; } }
a {
  color: inherit;
  text-decoration: none; }

a:hover {
  color: #A3A3A3; }

.bio p {
  max-width: 660px; }

.cols {
  display: flex;
  width: 100%;
  margin-bottom: 6px;
  gap: 20px; }
  .cols > div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; }
  .cols .name-description {
    flex: 5; }
    .cols .name-description .name {
      flex: 2; }
    .cols .name-description .description {
      flex: 3; }
  .cols .date-place {
    flex: 2; }
    .cols .date-place > div {
      flex: 1; }

@media screen and (max-width: 1050px) {
  .cols {
    margin-bottom: 8px; }
    .cols > div {
      flex: 1; }
    .cols .name-description {
      flex: 3; }
      .cols .name-description .name {
        flex: 1; }
      .cols .name-description .description {
        flex: 2; }
    .cols .date-place {
      display: block;
      flex: 1; } }
@media screen and (max-width: 820px) {
  .cols .name {
    font-weight: 600; }
  .cols .name-description {
    display: block;
    flex: 2; } }
@media screen and (max-width: 550px) {
  .cols {
    display: block; } }
.projects {
  background: black;
  color: white; }
  .projects h2 {
    margin-bottom: var(--spacer); }
  .projects .project-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacer); }
  .projects .project-item {
    width: calc(20% - var(--spacer));
    margin-bottom: var(--spacer); }
  .projects a:hover {
    color: #A3A3A3; }
  .projects .project-image {
    width: 100%;
    height: 12vw;
    object-fit: cover;
    object-position: center;
    border-radius: 2px; }
  @media screen and (max-width: 920px) {
    .projects .project-item {
      width: calc(25% - var(--spacer)); }
    .projects .project-image {
      height: 14vw; } }
  @media screen and (max-width: 730px) {
    .projects .project-item {
      width: calc(33.33% - var(--spacer)); }
    .projects .project-image {
      height: 18vw; } }
  @media screen and (max-width: 600px) {
    .projects .project-item {
      width: calc(50% - var(--spacer)); }
    .projects .project-image {
      height: 28vw; } }
  .projects .project-subtitle {
    color: #A3A3A3; }
  .projects .project-tag {
    font-size: 10px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    border: 0.5px solid grey;
    padding: 2px 5px;
    border-radius: 12px; }
  .projects .tags {
    margin: 6px 0; }
  .projects p {
    margin: 0;
    margin-bottom: 6px; }

.archive {
  margin-top: calc(var(--spacer)*2); }
  .archive h2 {
    margin-bottom: 6px; }
  .archive div {
    display: flex;
    gap: var(--spacer); }
