* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
  background-color: chocolate;
}

header {
  background-color: #333;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.logo {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00adb5;
}

.section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: chocolate;
}

.section:nth-child(even) {
  background-color: #eaeaea;
  background: chocolate;
}

.project-card {
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 600px;
  background-color: rgb(247, 142, 68);
}

footer {
  background: #222;
  color: #eee;
  text-align: center;
  padding: 1rem 0;
}
