@charset "UTF-8";

h1, h2, h3 ,h4, h5, h6, p, a, li, ul, img, .title-content, .txt-content {
    transition: 0.2s ease-in-out;
}

.fade {
    animation-name: fade;
    animation-duration: .3s;
  }
  
  @keyframes fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }