* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f0ebe3;
  color: #2a2520;
  font-family: 'Roboto Mono', monospace;
  height: 100vh;
  overflow: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 28px 40px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(42, 37, 32, 0.7);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: rgba(42, 37, 32, 0.4);
  text-decoration: none;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: rgba(42, 37, 32, 0.9);
}

/* Canvases */
#wave-canvas,
#sun-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#wave-canvas {
  z-index: 1;
  pointer-events: auto;
}

#sun-canvas {
  z-index: 2;
  pointer-events: none;
}

/* Email link below sun */
.email-link {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.email-link a {
  color: rgba(42, 37, 32, 0.4);
  text-decoration: none;
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  transition: color 0.3s ease;
}

.email-link a:hover {
  color: rgba(42, 37, 32, 0.9);
}
