:root {
  --color-black: #191f21;
  --color-gray: #f2f4f7;
  --color-tint: #4e54bf;
  --color-link: #0097e6;
  --color-text-default: var(--color-black);
  --color-text-links: var(--color-link);
  --color-background: var(--color-gray);
  --icon-size: 48px;
  --icon-color: var(--color-tint);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-tint: #62d7dd;
    --color-background: var(--color-black);
    --color-text-default: var(--color-gray);
    --color-text-links: var(--color-tint);
  }
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: DM Sans Fallback;
  src: local(Arial);
  size-adjust: 97.5%;
  ascent-override: 105%;
  descent-override: 35%;
  line-gap-override: 0%;
}

html {
  font-optical-sizing: auto;
  font-family: DM Sans, DM Sans Fallback, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
}

body {
  color: var(--color-text-default);
  background-color: var(--color-background);
}

h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;

  & strong {
    background: linear-gradient(90deg, var(--color-tint), var(--color-text-default), var(--color-tint));
    -webkit-text-fill-color: transparent;
    color: var(--color-tint);
    white-space: nowrap;
    background-size: 400%;
    background-clip: text;
    font-weight: 600;
    animation: 8s ease-in infinite text-animation;
  }
}

a {
  color: var(--color-text-links);
  text-underline-offset: 6px;
  padding-right: 4px;
  text-decoration: underline;
  transition: opacity .2s;

  &:hover {
    opacity: .6;
  }
}

svg {
  width: 100%;
  height: auto;
  display: block;
}

header {
  backdrop-filter: blur(4px);
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  position: sticky;
  top: 0;

  & a, & a:visited, & a:link {
    color: var(--color-text-default);
    text-decoration: none;

    &:hover {
      opacity: 1;
    }
  }

  & nav {
    align-items: center;
    gap: 16px;
    display: flex;
  }

  & .header-index {
    font-size: 1.5rem;
  }

  & .header-link {
    border-bottom: 2px solid #0000;
    padding: 6px 0;
    transition: border-bottom .4s;

    &:hover {
      border-bottom: 2px solid var(--color-text-links);
    }
  }
}

main {
  flex-direction: column;
  justify-content: space-between;
  height: 100dvh;
  display: flex;
}

#about {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;

  & p {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.contact-list {
  align-items: center;
  gap: calc(var(--icon-size) / 4);
  flex-wrap: wrap;
  justify-content: center;
  height: 100%;
  margin: 0;
  padding: 32px;
  list-style: none;
  display: flex;

  & a {
    background-size: var(--icon-size) var(--icon-size);
    height: var(--icon-size);
    width: var(--icon-size);
    padding: 0;
    display: block;
  }
}

@media screen and (width <= 720px) {
  html {
    font-size: 12px;
  }
}

@media screen and (width <= 480px) {
  h1 strong {
    white-space: normal;
  }
}

@keyframes text-animation {
  from {
    background-position: 0;
  }

  to {
    background-position: -400%;
  }
}
/*# sourceMappingURL=ggviana.github.io.ebeadb08.css.map */
