* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
  background-color: #0e0e0e;
  overflow-x: hidden;
}

canvas#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #bbbbbb;
}

.projects {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
}

.project-card {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.project-card .text {
  flex: 1 1 300px;
}

.project-card .media {
  flex: 1 1 300px;
}

.project-card img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}
