* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: black;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* FULLSCREEN VANTA BACKGROUND */
#vanta-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
}

/* CENTER CARD */
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.75);
  padding: 25px 30px;
  width: 340px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
  z-index: 2;
}

h1 {
  color: #FFD700;
}

#quote {
  color: white;
  min-height: 60px;
  line-height: 1.5;
}

button {
  margin-top: 15px;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  background: #FFD700;
  font-weight: bold;
  cursor: pointer;
}