body {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    justify-content: center;
    background-color: lightpink;
}
h2 {
    line-height: 0.5em;
}

.lecker{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fuss {
    animation: spin 5s infinite linear;
    font-size: 10rem;
    margin-bottom: 5rem;
}

.cringe {
  text-align: center;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  color: darkorchid;
}

.cringe2 {
  text-align: center;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  color: papayawhip;
}

@keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }