
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  font-family: 'Tomorrow', serif;
}

canvas {
  display: block;
}

h1, h1 a {
  font-size: 3rem;
  margin: 0 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  color: #fff;
  text-shadow: 
    -0.1rem -0.1rem 0 #000,  
    0.1rem -0.1rem 0 #000,
    -0.1rem 0.1rem 0 #000,
    0.1rem 0.1rem 0 #000;
  text-decoration: none;
}

.subtitle {
  font-size: 1rem;
  margin: 1rem 0.75rem 0 0.75rem;
  letter-spacing: 0.1rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 
    -0.1rem -0.1rem 0 #000,  
    0.1rem -0.1rem 0 #000,
    -0.1rem 0.1rem 0 #000,
    0.1rem 0.1rem 0 #000;
}

#action-overlay {
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  font-size: 1rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
}

#action-overlay span {
  margin: 0.75rem 0.6rem;
  display: block;
}

#action-overlay a {
  color: #000;
  text-decoration: none;
}

#linkedin {
  display: inline-block;
  height: 1.25rem;
  width: auto;
  vertical-align: -0.25rem; 
}

#top-overlay {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  opacity: 0;
  animation: fadeInSlow 3s ease-out forwards 0.5s;
}

#bottom-overlay {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  opacity: 0;
  animation: fadeInSlow 3s ease-out forwards 0.5s;
}

#bottom-overlay a {
  color: #fff;
  text-decoration: none;
}

#numbers-container {
  display: inline-flex;
  gap: 24px;
  background: rgba(0, 0, 0, 0.65);
  padding: 12px 24px;
  margin: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  letter-spacing: 0.1rem;
}

@keyframes fadeInSlow {
  to {
    opacity: 1;
  }
}
