.fade-in-up {
        animation: fadeInUp 0.8s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
      }
      @keyframes fadeInUp {
        to { opacity: 1; transform: translateY(0); }
      }
      .delay-100 { animation-delay: 100ms; }
      .delay-200 { animation-delay: 200ms; }
      .delay-300 { animation-delay: 300ms; }
      
      .outline-round {
      	list-style: none;
      	padding-left: 0;
      }
      .outline-round li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
      }
      .outline-round li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.45em;
        width: 0.375rem;
        height: 0.375rem;
        border-radius: 50%;
        background-color: currentColor;
      }
      .outline-round-sub {
      	list-style: none;
      	padding-left: 1.5rem;
      	margin-top: 0.5rem;
      }
      .outline-round-sub li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
      }
      .outline-round-sub li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.45em;
        width: 0.375rem;
        height: 0.375rem;
        border-radius: 50%;
        border: 1px solid currentColor;
        background-color: transparent;
      }

main a {
    text-decoration: underline;
}