@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Orbitron:wght@400..900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
}
.back-home-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 24px 0 0 24px;
  color: #0074d9;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.back-home-link:hover {
  color: #005fa3;
  text-decoration: underline;
}
.about-hero {
  background: linear-gradient(135deg, #0f5132 60%, #145a32 100%);
  color: #fff;
  text-align: center;
  padding: 48px 16px 32px 16px;
}

.about-hero .brand {
  color: #00c896;
}

.about-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 8px;
}

.about-content {
  background: #fff;
  line-height: 1.7;
  letter-spacing: 1px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(20,90,50,0.08);
  max-width: 600px;
  padding: 32px 24px;
}

.about-content h2 {
  color: #145a32;
  margin-top: 24px;
}

.portfolio-link {
  color: #0074d9;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}

.portfolio-link:hover {
  color: #005fa3;
}