/* Landing Page Container */
body {
  margin:0;
  padding:0;
  font-family: 'Segoe UI', system-ui, sans-serif;
  background:#0f0f12;
  color:#eaeaea;
  display:flex;
  justify-content:center;
  align-items:center;
  height:100vh;
  text-align:center;
}

.landing-container h1 {
  font-size:3rem;
  margin-bottom:1rem;
  letter-spacing:2px;
}

.landing-container p {
  font-size:1.2rem;
  color:#aaa;
  margin-bottom:2rem;
}

/* Portfolio Button */
.portfolio-btn {
  background:#4f8cff;
  color:white;
  text-decoration:none;
  padding:0.8rem 2rem;
  font-size:1.2rem;
  border-radius:8px;
  transition: transform 0.2s, background 0.2s;
  font-weight:500;
}

.portfolio-btn:hover {
  background:#3a6fd1;
  transform: scale(1.05);
}
