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

body {
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
}

.title {
  color: #ff69b4;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
  z-index: 10;
  letter-spacing: 1px;
}

.subtitle {
  color: #ff8da1;
  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
  z-index: 10;
  letter-spacing: 1px;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}