/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
  }
  
  .timeline {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }
  
  .timeline-item {
    background-color: #9cc7ed;
    border: 1px solid #060606;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(160, 244, 64, 0.2);
    padding: 20px;
    margin: 0 10px;
    text-align: center;
    position: relative;
    min-width: 200px;
  }
  
  .timeline-content {
    position: relative;
  }
   /* Define the rotation animation */
   @keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Apply the animation to the image */
.rotate-image {
    animation: rotate360 4s linear infinite; /* Change the duration or timing function as needed */
}
  
  .timeline-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: #f23b3b;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
  }
  
  .timeline-item:first-child::before {
    display: none;
  }
  
  .date {
    display: block;
    margin-top: 10px;
    font-style: italic;
    color: #888;
  }
  