* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #38bdf8;
}

.hero p {
  font-size: 1.2rem;
  margin: 10px 0;
}

.btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #38bdf8;
  color: #0f172a;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.projects ul {
  margin-top: 15px;
  list-style: square;
}

footer {
  text-align: center;
  padding: 20px;
  background: #020617;
}
