body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  background-color: #fff;
}

/* Navbar */
.navbar {
  background-color: #fff;
  border-bottom: none;
  box-shadow: none;
}

.nav-link-plain {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px;
}

.nav-link-plain:hover {
  opacity: 0.5;
  color: #333;
}

/* App container */
.app-container {
  padding-left: clamp(16px, 5vw, 50px);
  padding-right: clamp(16px, 5vw, 50px);
}

/* Intro */
.intro-block {
  padding: 40px 0 20px;
}

.intro-text {
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.intro-text.desc {
  font-size: clamp(1.2rem, 4vw, 32px);
  color: #444;
}

.intro-text.name {
  font-size: clamp(2.5rem, 10vw, 100px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
}

/* Spinning sunglasses */
.sunglasses {
  display: inline-block;
  margin-left: 10px;
  animation: spin 5s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* About */
.about-block {
  /* padding-top: 5%; */
}

.about-title {
  font-size: 32px;
  font-weight: 600;
  color: #222;
}

.about-text {
  font-size: 24px;
  padding-top: 6px;
  color: #333;
}

/* Tech Stack */
.techstack {
  margin-top: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  text-align: center;
}

.tech-icon {
  padding: 5px;
}

/* Video */
.video-block {
  padding-top: 40px;
}

.video-wrapper {
  border-radius: 8px;
  overflow: hidden;
  max-width: 800px;
}

/* Footer */
.footer-text {
  font-size: 1.1rem;
  color: #555;
  padding-bottom: 40px;
  padding-top: 20px;
}
