html,
body {
  font-family: "Helvetica", sans-serif;

  color: var(--color-primary);
}

.main-description {
  color: black;
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px;
}

.container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  cursor: pointer;
  background-color: var(--color-primary);
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center;
  transition: 1s all ease-in-out 0s;
}

.rotate {
  transform: translate(-50%, -50%) rotate(180deg);
  background: black;
  border-radius: 20px;
}

.move {
  transform: translate(0%, -100%);
}

.scale {
  transform: scale(.5) rotate(180deg);
  background: black;
}

.newFunction {
  transform: translate(0%, -50%) rotate(180deg);
  background: blue;
}