body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  text-align: center;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

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

#profilePicture img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid white;
  margin-top: 20px;
  object-fit: cover;
}

#userName {
  font-size: 1.5rem;
  margin-top: 10px;
}

#links {
  margin-top: 20px;
}

.link {
  display: block;
  margin: 10px auto;
  width: 200px;
  padding: 10px;
  background-color: #222;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}

.link:hover {
  background-color: #555;
}

#hashtag {
  margin-top: 30px;
  font-size: 1.2rem;
}
