/* ===== BASIC RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== LAYOUT ===== */
body {
  background: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}

/* ===== CANVAS BACKGROUND ===== */
#dots-canvas,
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* ===== CONTENT ===== */
.container {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.name {
  font-size: 4rem;
  letter-spacing: 4px;
  font-weight: 600;
}

.subtitle {
  font-size: 2rem;
  margin-top: 10px;
  font-weight: 400;
  letter-spacing: 3px;
}

.email {
  display: inline-block;
  margin-top: 15px;
  font-size: 1rem;
  color: #00ffff;
  text-decoration: none;
  transition: color 0.3s;
}

.email:hover {
  color: #fff;
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 768px) {
  .name {
    font-size: 2.5rem;
  }
  .subtitle {
    font-size: 1.4rem;
  }
  .email {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .name {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
}
