* { box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: #f4f4f2;
  font-family: 'Anton', sans-serif;
  transition: background-color 1.6s linear;
}

/* TEXT */
.title,
.statement {
  position: absolute;
  pointer-events: none;
  letter-spacing: -0.02em;
  line-height: 0.9;
  transition: color 1.6s linear;
}

.title {
  font-size: clamp(8rem, 20vw, 24rem);
  top: -6vh;
  left: -6vw;
}

.statement {
  font-size: clamp(3rem, 8vw, 9rem);
  bottom: -1vh;
  right: -1vw;
  text-align: right;
}

/* REGEN-OBJEKTE */
.shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}

/* klein, regentropfenartig */
.circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.square {
  width: 18px;
  height: 18px;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid;
}
