/* LIVE Rosenau */

/*
TODO
- fill li with color
*/

.note {
  height: 100%;
  background: var(--color-red);
}
li:nth-child(even) .note {
  background: var(--color-light);
}
/*
@media screen and (max-width: 479px) {
  li:nth-child(even) .note {
    --padding: 0;;
  }
}
*/
.note p {
  color: var(--color-light);
}
li:nth-child(even) .note p {
  color: var(--color-red);
}