  /* Fundo animado */
  .animation-container {
    position: fixed;
    top: 100px;
    left: 10%;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  /* Texto digitado */
  .code-typing {
    font-size: 12px;
    text-align: left;
    height: 280px;
    width: 400px;
    white-space: pre-wrap;
    /* overflow: hidden; */
  }

  
  /* Animações */
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes moveRod {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(20px);
    }
  }