* {
  margin: 0;
  border: 0;
  box-sizing: border-box;
  overflow: hidden;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}

#canvases {
  position:fixed;
  width: 100%;
  height: 100%;
  display: flex;
}

#canvas-top {
  position: inherit;
  z-index: 2;
}

#canvas-bottom {
  position: inherit;
  z-index: 1;
}

.social-icons {
  display: flex;
  z-index: 3;
  gap: 50px;
}

.social-icons a {
  color: rgba(168, 255, 255, 0.4);
  font-size: 13em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: rgba(168, 255, 255, 0.7);
}