body {
  font-family: Arial, sans-serif;
  background-color: #000000;
  text-align: center;
  padding: 5vw;
}

.container {
  max-width: 500px;
  margin: 0 auto;
}

.person img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F6F6F6;
}

.person h3 {
  margin-top: 10px;
  font-size: 25px;
  color: #F6F6F6;
}

.links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  padding: 12px 20px;
  text-decoration: none;
  color: #F6F6F6;
  border: 2px solid #F6F6F6;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
  font-size: 18px;
}

.links a:hover {
  background-color: #A2D5C6;
  color: #000000;
}

.links img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}