body {
  font-family: 'Segoe UI', sans-serif;
  padding-top: 70px;
  scroll-behavior: smooth;
}

h1, h2 {
  color: #2c3e50;
}

#skills span {
  padding: 0.4em 0.75em;
  background-color: #0d6efd;
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
}

.hero-section {
  height: 100vh;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.hero-img {
  width: 150px;
  height: 150px;
  transition: all 0.3s ease;
}

.hero-section.shrink .hero-img {
  width: 100px;
  height: 100px;
}

.hero-section.shrink #name {
  font-size: 1.5rem;
}

.hero-section.shrink #title {
  font-size: 1rem;
}

#name {
  font-size: 2.5rem;
  transition: font-size 0.3s ease;
}

#title {
  font-size: 1.25rem;
  transition: font-size 0.3s ease;
}
