* {
  margin: 0;
  padding: 0;
}

body {
  overflow: hidden;
}

#wrapper {
  position: relative;
  height: 100vh;
  background: #000;
  font-family: 'Fira Code';
}

#canvas_container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

canvas {
  display: block;
}

.text {
  width: 100%;
  height: 100px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
  color: rgb(255, 255, 255);
  /* background-color: rgba(0, 0, 0, 0.81); */
  font-size: 3rem;
  line-height: 1.5;
  user-select: none;
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  text-shadow: 2px 2px 4px #000000;
}

.text span {
  color: #ffffff;
}

.text .quoteText {
  width: 85%;
  margin: 0 auto;
}

.text .quoteText span {
  font-weight: 700;
}

.clickInfo {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: -80px;
  z-index: 11;
  cursor: pointer;
  color: #f9b31c;
  background-color: rgba(23, 23, 23, 0.9);
  padding: 10px 0;
  font-size: 20px;
}

/* ADDED FOR CSP COMPLIANCE */
.quote-small {
  font-size: 0.7em;
}

.quote-medium {
  font-size: 0.9em;
}

.quote-large {
  font-size: 1.1em;
}

.hidden-image {
  display: none;
}
/* END OF ADDED RULES */

@media only screen and (max-width: 815px) {
  .text {
    font-size: 2rem;
  }

  .text span {
    afont-size: 0.8rem !important;
  }

  .clickInfo {
    font-size: 1rem;
  }
}
