:root {
  --app-colors-primary-light: rgb(255, 176, 0);
  --app-colors-primary-dark: rgb(0, 188, 212);
  --app-colors-primary-hover-light: hsl(41, 100%, 40%);
  --app-colors-primary-hover-dark: hsl(267, 80%, 50%);
  --app-colors-secondary-light: rgb(255, 176, 0);
  --app-colors-secondary-dark: rgb(50, 50, 50);
  --app-background-light: rgb(255, 245, 235);
  --app-background-dark: rgb(32, 31, 30);
  --app-material-light: rgb(255, 255, 255);
  --app-material-dark:  rgb(40, 40, 40);
  --app-material-contrast-light: 0, 0, 0;
  --app-material-contrast-dark: 255, 255, 255;
  --app-text-light: hsl(0, 0%, 0%);
  --app-text-dark: hsl(0, 0%, 95%);
  --app-text: var(--app-text-dark);
  --app-title-light: hsl(0, 0%, 15%);
  --app-title-dark: hsl(0, 0%, 100%);
  --app-title: var(--app-title-dark);
  --app-button-light: rgb(255, 176, 0);
  --app-button-dark: rgb(143, 53, 255);
  --app-button: var(--app-button-dark);
  --app-gradient-light: -webkit-linear-gradient(45deg, #ffb946, #ff7878);
  --app-gradient-dark: -webkit-linear-gradient(45deg, #00BCD4, #c28fff);
  --app-gradient: var(--app-gradient-dark);
  --app-colors-primary: var(--app-colors-primary-dark);
  --app-colors-primary-hover: var(--app-colors-primary-hover-dark);
  --app-colors-secondary: var(--app-colors-secondary-dark);
  --app-background: var(--app-background-dark);
  --app-material: var(--app-material-dark);
  --app-material-contrast: var(--app-material-contrast-dark);
  --app-static-colors-button: 80, 80, 80;
  --app-static-colors-button-hover: 40, 40, 40;
  --app-transitions-material: background-color 0.1s;
  --app-transitions-color: color 0.1s;
  --appsidebar-width: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  margin-top: 56px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: var(--app-text);
  background-color: var(--app-background);
  -webkit-transition: var(--app-transitions-material);
  transition: var(--app-transitions-material);
  -webkit-tap-highlight-color: transparent;
}

body.hasHover as-button:hover {
  color: var(--app-text-dark);
  background-color: var(--app-colors-primary-hover);
}

body.hasHover[color="primary"]:hover {
  color: var(--app-text-dark);
  background-color: var(--app-colors-primary-hover);
}

body.hasHover as-content as-card as-content a:hover {
  color: var(--app-colors-primary);
  background-color: rgba(var(--app-material-contrast), 0.05);
}

body.hasHover as-content as-card as-content as-text as-actions a:hover {
  color: var(--app-text-dark);
  background-color: rgba(var(--app-static-colors-button-hover), 1);
}

body.hasHover as-content as-card as-content as-text as-actions a:first-child:hover {
  background-color: var(--app-colors-primary-hover);
}

.selectable {
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

imc-ripple {
  display: block;
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: opacity, tranform;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: opacity 0.4s, -webkit-transform 0.2s cubic-bezier(0, 0, 0.8, 1);
  transition: opacity 0.4s, -webkit-transform 0.2s cubic-bezier(0, 0, 0.8, 1);
  transition: transform 0.2s cubic-bezier(0, 0, 0.8, 1), opacity 0.4s;
  transition: transform 0.2s cubic-bezier(0, 0, 0.8, 1), opacity 0.4s, -webkit-transform 0.2s cubic-bezier(0, 0, 0.8, 1);
}

imc-ripple.clicked {
  opacity: 0;
}

as-button {
  display: inline-block;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 8px 12px;
  border-radius: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--app-text-dark);
  -webkit-box-shadow: inset 0 0 2px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 2px 0px rgba(0, 0, 0, 0.1);
  background-color: rgba(var(--app-static-colors-button), 1);
  -webkit-transition: var(--app-transitions-material);
  transition: var(--app-transitions-material);
}

as-button.material-icons {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  border-radius: 50%;
  padding: 8px;
  background-color: transparent !important;
}

as-button[color="primary"] {
  background-color: var(--app-button);
}

as-text-reveal {
  cursor: pointer;
  padding: 0px 8px;
  color: var(--app-colors-primary);
  background-color: black;
}

as-text-reveal:not(.selectable):hover {
  color: var(--app-colors-primary-hover);
}

as-text-reveal.selectable {
  cursor: text;
  padding: 0px;
  color: var(--app-text);
  background-color: transparent;
}

as-appbar {
  z-index: 14;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  padding: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.4);
  background-color: var(--app-colors-secondary);
  -webkit-transition: var(--app-transitions-material);
  transition: var(--app-transitions-material);
}

as-appbar as-title {
  display: block;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  color: var(--app-text-dark);
  font-size: 24px;
  font-weight: 500;
}

as-appbar as-actions {
  margin-top: -3px;
}

body > as-content {
  display: block;
  height: 100%;
  margin-right: var(--appsidebar-width);
}

body > as-content > as-card:first-child {
  background-color: transparent;
}

body > as-content > as-modal-sheet {
  display: block;
  -webkit-transform: translateY(100vh);
          transform: translateY(100vh);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

body > as-content > as-modal-sheet.disableAnim {
  -webkit-transition: unset;
  transition: unset;
}

body > as-content as-card {
  z-index: 2;
  display: block;
  padding: 32px;
  background-color: var(--app-material);
  -webkit-transition: var(--app-transitions-material);
  transition: var(--app-transitions-material);
}

body > as-content as-card[width="full"] {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}

body > as-content as-card as-title {
  display: block;
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--app-title);
}

body > as-content as-card as-title.gradient {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 64px;
  background-clip: text;
  background-size: 100%;
  background-repeat: repeat;
  background: var(--app-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body > as-content as-card as-content {
  display: block;
  overflow: auto;
  margin-bottom: 16px;
  background-color: rgba(var(--app-material-contrast), 0.03);
}

body > as-content as-card as-content:last-child {
  margin-bottom: 0;
}

body > as-content as-card as-content > as-content {
  background-color: rgba(var(--app-material-contrast), 0.05);
}

body > as-content as-card as-content as-text, body > as-content as-card as-content a {
  display: block;
  padding: 12px 32px;
  font-size: 16px;
}

body > as-content as-card as-content as-text[text] {
  padding: 0;
}

body > as-content as-card as-content as-text[text]::before {
  content: attr(text);
  padding: 8px 0;
  display: inline-block;
}

body > as-content as-card as-content as-text[type="inline"] {
  display: inline;
  padding: 0;
}

body > as-content as-card as-content as-text[weight="500"] {
  font-weight: 500;
}

body > as-content as-card as-content as-text as-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body > as-content as-card as-content as-text as-actions a {
  cursor: pointer;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  padding: 8px 14px;
  margin-right: 16px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  color: var(--app-text-dark);
  background-color: rgba(var(--app-static-colors-button), 1);
  -webkit-box-shadow: inset 0 0 2px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 2px 0px rgba(0, 0, 0, 0.1);
}

body > as-content as-card as-content as-text as-actions a:first-child {
  background-color: var(--app-button);
}

body > as-content as-card as-content a {
  color: inherit;
  white-space: nowrap;
  text-decoration: none;
  -webkit-transition: color 0.1s, background-color 0.1s;
  transition: color 0.1s, background-color 0.1s;
}

body > as-content as-card as-content a[icon]::before {
  content: attr(icon);
  position: absolute;
  margin-left: -28px;
  color: var(--app-colors-primary);
  -webkit-transition: var(--app-transitions-color);
  transition: var(--app-transitions-color);
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

as-overlay {
  z-index: 16;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

as-overlay::before {
  content: "";
  z-index: -1;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

as-overlay.show::before {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.4);
}

as-overlay as-modal-sheet {
  display: block;
  max-width: 800px;
  margin-left: 50vw;
  padding: 32px;
  overflow: hidden;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  background-color: var(--app-material);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

as-overlay as-modal-sheet.show {
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

as-overlay as-modal-sheet as-title {
  display: block;
  margin-bottom: 16px;
  font-size: 24px;
}

as-overlay as-modal-sheet as-text {
  display: block;
  font-size: 16px;
}

as-overlay as-modal-sheet as-actions {
  display: block;
  margin-top: 12px;
  padding: 4px 0;
}

as-overlay as-modal-sheet as-actions as-button {
  display: block;
}

as-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 64px;
  background-color: var(--app-material);
  -webkit-transition: var(--app-transitions-material);
  transition: var(--app-transitions-material);
}

as-footer:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  background-color: rgba(var(--app-material-contrast), 0.05);
}

as-footer as-text {
  display: block;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  font-size: 16px;
}

as-footer as-button {
  white-space: nowrap;
}

as-card#bio as-header {
  display: block;
  margin-top: 32px;
  padding-left: 8px;
  margin-left: -8px;
  font-size: 22px;
  border-left: solid 4px var(--app-colors-primary);
  -webkit-transition: border-left 0.1s;
  transition: border-left 0.1s;
}

as-card#bio as-text {
  font-size: 18px;
}

as-card#bio > as-skills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

as-card#bio > as-skills > as-dynamic {
  display: block;
  padding: 12px 24px;
  min-width: 80px;
  max-width: 200px;
}

as-card#bio > as-skills > as-dynamic:last-child {
  margin-right: 0;
}

as-card#bio > as-skills > as-dynamic as-text {
  display: block;
  font-weight: 500;
}

as-card#bio > as-skills > as-dynamic as-description {
  font-size: 16px;
}

as-card#latest > as-content > as-text {
  font-size: 20px;
}

as-card#latest > as-content > as-text > a {
  font-size: 20px;
}

as-card#latest as-content {
  margin-bottom: 32px;
  background-color: transparent;
}

as-card#latest as-content:last-child {
  margin-bottom: 0px;
}

as-card#latest as-content > as-content {
  display: none;
}

as-card#projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0;
  padding-right: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

as-card#projects > as-container {
  display: block;
  padding-right: 12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 1000px) {
  :root {
    --appsidebar-width: 0px;
  }
  as-sidebar {
    display: none;
  }
  as-modal-sheet {
    max-width: unset !important;
    margin-left: unset !important;
    -webkit-transform: translateY(100%) !important;
            transform: translateY(100%) !important;
    border-radius: 16px 16px 0 0;
  }
  as-modal-sheet.show {
    -webkit-transform: translateY(0%) !important;
            transform: translateY(0%) !important;
  }
}
/*# sourceMappingURL=main.css.map */