@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Special Elite', monospace;
  background-color: #0a0a0a;
  color: #f8f1e0;
  height: 100%;
  overflow: hidden;
}

.loom-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.loom-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.scene-box {
  position: relative;
  z-index: 2;
  max-width: 800px;
  height: 90vh;
  margin: 4% auto;
  padding: 2em;
  background: rgba(255, 255, 255, 0.12);  /* lighter text box background */
  border-radius: 12px;
  box-shadow: 0 0 25px #ff0040;
  overflow-y: auto;
}

h1.loom-title {
  text-align: center;
  color: #ff0040;
  margin-bottom: 1em;
  font-size: 2.2em;
}

.scene-text {
  white-space: pre-wrap;
  font-size: 1.15em;
  line-height: 1.7em;
  color: #f8e6d3;
}
