@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

:root {
  --avatar-size: 340px;
}

* {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: black;
}

.container {
  display: grid;
}

.box {
  display: flex;
  flex-direction: column;
  gap: 10px;

  justify-content: center;
  align-items: center;

  grid-area: 1 / 1;
  z-index: 10;

  pointer-events: none;
}

#box__avatar {
  width: var(--avatar-size);
  height: var(--avatar-size);
  overflow: hidden;
  border-radius: 24px;
  pointer-events: all;
  cursor: pointer;

  /* Remove highlight */
  -webkit-tap-highlight-color: transparent;
  -ms-user-select: none;
  user-select: none;
}

.box__contact {
  color: white;
  opacity: 0.9;
  pointer-events: all;
  text-decoration: none;
}

#box__avatar p {
  margin: 0;
  background: url("/images/hdl.jpeg");
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  background-size: var(--avatar-size) var(--avatar-size);
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;

  font-size: 0.7em;
  letter-spacing: -0.05em;
  line-height: 0.8em;
  text-align: justify;

  user-select: none;
  -moz-user-select: none;
  -webkit-text-select: none;
  -webkit-user-select: none;
  scroll-behavior: none;
}

#canvas {
  grid-area: 1 / 1;
  z-index: 9;
}