body {
    background-color: white;
    position: relative;
    background-image: radial-gradient(
        circle at 20% 30%,
        rgba(80, 148, 187, 0.3),
        transparent 40%
      ),
      radial-gradient(
        circle at 70% 20%,
        rgba(119, 217, 214, 0.3),
        transparent 40%
      ),
      radial-gradient(
        circle at 40% 70%,
        rgba(116, 188, 192, 0.3),
        transparent 40%
      ),
      radial-gradient(
        circle at 80% 80%,
        rgba(80, 148, 187, 0.25),
        transparent 40%
      );
  }

  h1,
  h2,
  h3 {
    color: #2c6c91;
  }

  a {
    color: #000000;
  }

  .ctcg-logo {
    height: 50px;
    width: auto;
  }

  #particle-canvas {
    height: 400px;
  }

  #particle-canvas > div {
    background: transparent !important;
  }
  
  .timeline {
    position: relative;
    margin-left: 2rem;
    padding-left: 2rem;
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #5094bb;
  }

  .timeline-item {
    position: relative;
    margin-bottom: 3rem;
  }

  .timeline-icon {
    position: absolute;
    left: -2.5rem;
    top: 0;
    background: #fff;
    border: 2px solid #5094bb;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .timeline-icon svg {
    height: 20px;
    width: 100%;
  }

  .timeline-content {
    margin-left: 1rem;
  }

  .timeline-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }

  .timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
  }