body {
  font-family: var(--font-sans);
  font-weight: 300;
}

/* Button */

.button {
  background-color: var(--color-bg);
  border: 1px solid var(--color-text);
  color: var(--color-text);
  font-weight: 700;
  padding: 0.5rem;
  text-transform: uppercase;
  transition: background-color var(--transition-base);
}

.button:hover {
  background-color: var(--color-surface);
}

/* Hero */

.hero {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 85vh;
  width: 100%;
}

.hero-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: var(--padding-page);
}

.hero-name {
  cursor: default;
  font-family: var(--font-rounded);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

@media (min-width: 480px) {
  .hero-name {
    font-size: 4rem;
  }
}

@media (min-width: 768px) {
  .hero-name {
    font-size: 5rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-name {
    animation: fadeInUp 1s forwards;
    animation-delay: 300ms;
    opacity: 0;
  }
}

.hero-title {
  cursor: default;
  font-weight: 300;
  line-height: 1;
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-title {
    animation: fadeInUp 1s forwards;
    animation-delay: 600ms;
    opacity: 0;
  }
}

.hero-links {
  display: flex;
  justify-content: space-between;
  min-width: 7.5rem;
}

.hero-link {
  color: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-links {
    animation: fadeInUp 1s forwards;
    animation-delay: 900ms;
    opacity: 0;
  }
}

.hero-icon {
  display: block;
  height: 3.125rem;
  transition: transform 600ms;
  width: 3.125rem;
}

.hero-icon:hover {
  transform: scale(1.2);
}

/* Animations */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
