.header {
  padding: 2rem 3rem;
}

.header-hero-img {
  --width: 4rem;
  width: var(--width);
  height: var(--width);
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}

.header-hero-name {
  margin-left: 1rem;
  font-size: 2.3rem;
  margin-right: auto;
}

.header-nav {
  margin-left: auto;
}

.header-nav-list {
  gap: 1.2rem;
}

.construction {
  font-size: 2rem;
  display: inline-flex;
  cursor: pointer;
  position: fixed;
  top: 1rem;
  right: 2rem;
}

.construction ion-icon {
  animation: flash 2.5s infinite;
}

.construction-text {
  opacity: 0;
  position: absolute;
  font-size: 1rem;
  display: block;
  width: 87px;
  bottom: 0;
  right: 0;
  padding: 0.5rem 1rem;
  background: var(--color-font-1);
  color: var(--color-bck-1);
  border-radius: 20px;
  transform: translate(4%, 125%);
}

.construction>ion-icon:hover + .construction-text {
  opacity: 1;
}

.header-nav-list-item-link {
  font-size: 1.4rem;
  color: var(--color-font-1);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  display: inline-block;
}


.hero-content-name {
  font-size: 8rem;
  line-height: 1;
}

.hero-context-occup {
  line-height: 1;
  font-size: 2rem;
}

.footer {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  gap: 1rem;
}

.footer-social-link {
  display: inline-flex;
  font-size: 2.2rem;
}


@media only screen and (max-width: 600px) {
  .hero-content-name {
    font-size: 4rem;
    text-align: center;
  }

  .hero-context-occup {
    font-size: 1.3rem;
  }

}

@media only screen and (max-width: 300px) {
  .hero-content-name {
    font-size: 3rem;
  }

  .hero-context-occup {
    font-size: 1rem;
  }

}
