#sketch-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

html, body {
  margin: 0;
  color: rgb(190, 190, 190);
  background-color: rgb(20, 20, 20);
  font-family: 'Lato', sans-serif;
}

main {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3vh 0 5vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6em;
  background: linear-gradient(to bottom, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.7) 35%, rgba(20, 20, 20, 0.9) 100%);
}

.name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.subtitle {
  font-weight: 300;
  font-size: 0.85rem;
  color: rgb(140, 140, 140);
  letter-spacing: 0.03em;
}

.links {
  display: flex;
  gap: 1.5em;
  font-size: 0.85rem;
}

a:link,
a:visited,
a:active {
  color: rgb(160, 160, 160);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: rgb(230, 230, 230);
}

canvas {
  display: block;
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  margin-right: 0.3em;
  fill: currentColor;
}
