body {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#container {
  width: 80%;
}
#wheelOfLife {
  display: block;
  position: relative;
  max-width: 450px;
  margin: auto;
}

.triangle {
  position: absolute;
  top: 0;
  width: 50%;
  height: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  transform-origin: bottom right;
  transition: 0.7s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.triangle {
  fill-opacity: 0.8;
}

#categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 15px;
}

p {
  text-align: justify;
  max-width: var(--input-width);
}