:root {
  --color-1: grey;
  --color-2: green;
  --color-3: blue;
  --color-4: red;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

#hero-lightpass {
  position: fixed;
  left: 75%;
  top: 75%;
  transform: translate(-75%, -75%);
  max-width: 150vw;
  max-height: auto;
  mix-blend-mode: difference;
}

#visuals {
  background: var(--color-1);
}

#svg-container {
  padding-top: 200px;
  width: 92vw;
  padding-left: 4vw;
  padding-bottom: 70px;
  background: var(--color-1);
}

#animation canvas {
  display: block;
}
.container {
  width: 100vw;
  background: rgb(0, 0, 0);
}

/* STYLES FOR COLOR CHOOSER */
#color-chooser {
  position: fixed;
  z-index: 999;
  top: 20%;
  height: 50%;
  left: -60px;
  width: 70px;
  background: rgba(255, 255, 255, 0.5);
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
#color-chooser:hover {
  left: 0;
}
#palette {
  padding: 10px;
  top: 20%;
}
#palette .color {
  margin-bottom: 0.1em;
  text-align: center;
}
input[type="color"] {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border: 0;
  outline: 0;
  padding: 0;
  box-shadow: 0;
  background-color: inherit;
  top: 50%;
}

.save-colors-wrapper {
  margin: 1px;
  color: black;
}
#btn-save-colors {
  text-align: center;
  border: solid 0.5px;
  padding: 0.35em 0.5em 0.25em;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 25px;
}
#saved-colors div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.01px;
  margin-bottom: 0.01px;
}
#saved-colors span {
  aspect-ratio: 1/1;
  background: red;
  margin-bottom: 0.5em;
}
#saved-colors i {
  aspect-ratio: 1/1;
  text-align: center;
  cursor: pointer;
}

/* STYLES FOR VISUALS */
.visual-color-1 {
  background: var(--color-2);
  width: 100vw;
  height: 260px;
}
.visual-color-2 {
  background: var(--color-2);
  width: 100vw;
  height: 50px;
}
.visual-color-3 {
  background: var(--color-3);
  width: 100vw;
  height: 50px;
}
.visual-color-4 {
  background: var(--color-4);
  width: 100vw;
  height: 50px;
}
.st0 {
  fill: var(--color-1);
}
.st1 {
  fill: var(--color-2);
}
.cls-1 {
  fill: var(--color-3);
  stroke: var(--color-4);
  stroke-miterlimit: 10;
  stroke-width: 0.5px;
}

.trenner {
  font-size: 300px;
  letter-spacing: -10px;
  color: var(--color-4);
  padding: 0%;
  line-height: 270px;
}
