.letters {
    color: #B9AEDC;
    
    font-size: 3rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .type {
    border-right: 2px solid;
    font-size: clamp(1.5rem, 4vw, 3rem);
   
    overflow: hidden;
    animation: cursor 1s step-end infinite;
    max-width: 600px;
  }

  .thumbnail img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
  }

  @keyframes cursor {
    50% {
      border-color: transparent;
    }
  }