body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-family: monospace;
}

.container {
  text-align: left;
  font-size: 96px;
  line-height: 1.1;
}

.line {
  white-space: nowrap;
}

.char {
  display: inline-block;
  transition: transform 0.8s ease-in-out;
}

/* Logo fijo */
.logo {
  width: 28px;
  height: 28px;
  vertical-align: down;
  margin: 0 12px;
  transition: transform 0.8s ease-in-out;
  transform-origin: center;
}

.fixed {
  transform: rotate(0deg);
}