.quote {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 2em 0;
    position: relative;
    display: block;
  }
.quote p {
    color: var(--font-color);
    text-shadow: var(--text-shadow);
}
  .quote::before,
  .quote::after {
    font-size: 15rem;
    position: absolute;
    z-index: -1;
    opacity: 0.2;
  }
  .quote::before {
    content: '„';
    left: -2.2rem;
    bottom: -4rem;
  }
  .quote::after {
    content: '“';
    right: -2.5rem;
    top: -5rem;
  }
  