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

html,
body {
  height: 100%;
  background: #0e070f;
  overflow: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.blur-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px 15px 0px 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  text-align: center;
  color: white;
  font-size: 2.5em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
