.subtitle-animation-container {
    border: 1px solid #94c4d1;
    border-radius: 14px;
    background-color: #fff;
    width: 100%;
    min-height: 14rem;
    margin: 0 auto;
    padding: 2rem; 
}

.round-button {
    border-radius: 50px;
    background: red;
    border: 1px solid red;
    color: #fff;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 2;
}

.close {
    background: #fff;
    border: #fff;
    color: red;
    margin-right: 2rem;
}

@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .subtitle-item {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
  }
  
  .subtitle-item:nth-child {
    animation-delay: 0.1s;
  }
   
    
  
  
  
