.container {
    position: relative;
  }

  .tutorial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: #cccccc; */
    padding: 20px;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    text-align: center;
  }

  .arrow {
    margin-bottom: 10px;
    font-size: 50px; /* Ajusta o tamanho da seta */
    animation: blink-animation 1s infinite; /* Adiciona animação de piscar */
  }

  @keyframes blink-animation {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
