  
.timeline-container {
    display: flex;
    justify-content: center;
}

/* Timeline Container */
.timeline {
    margin: 20px auto;
    padding: 20px;
}

/* Outer Layer with the timeline border */
.outer {
    border-left: 2px solid rgb(53, 64, 102, 0.8);
}

/* Card container */
.card {
    position: relative;
    margin: 0 0 20px 20px;
    padding: 10px;
    background: rgb(53, 64, 102, 0.8);
    color: rgb(250,  244,  238);
    border-radius: 8px;
    max-width: 400px;
}

/* Information about the timeline */
.info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info p,.info h3{
    margin: 0;
}
.info h4{
    color: rgb(250,  244,  238);
    margin-top: 0;
}
/* Title of the card */
.title {
    color: rgb(250,  244,  238);
    position: relative;
}

/* Timeline dot  */
.title::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgb(250,  244,  238);
    border-radius: 999px;
    left: -39px;
    border: 3px solid rgb(140, 198, 64);
}
  