.work {
    color: #fff;
    font-size: 8em;
}

.work-arrow {
    color: #fff;
    font-size: 4.8em;
    display: flex;
    justify-content: center;
}
.spiral {
  display: inline-block;
  animation: spin 2s linear infinite;
  transform-origin: 50% 50%;
  width: 6vh;
}
@keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }