body {
  margin: 0;
  padding: 0;
  background-color: #0d0d0d;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5em;
  margin: 0;
}

.highlight1 {
  color: #00ffff; /* Azul neon */
}

.highlight2 {
  color: #ff00ff; /* Rosa neon */
}

p {
  font-size: 1.2em;
  margin: 10px 0 20px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  padding: 12px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: #4d4e4e; /* Cor única para todos os botões */
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn i {
  margin-right: 10px;
  font-size: 1.2em;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00ffff;
}

canvas#background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
