#github-activity {
    position: relative;
    padding-right: 20px; /* Espace entre les activités et la ligne */
    z-index: 10; /* Place le conteneur au-dessus de la ligne */
}

#github-activity::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35px;
    width: 5px;
    height: 100%;
    background-color: rgba(76, 175, 80, 0.79);
    border-radius: 5px;
    opacity: 1;
    z-index: 1; /* Assure que la ligne verte est derrière le contenu */
}

.github-activity-item {
    position: relative;
    z-index: 20; /* Place chaque activité au-dessus de la ligne verte */
    padding-left: 40px; /* Ajoute un peu d'espace pour éviter le chevauchement */
    margin-bottom: 30px; /* Espace entre chaque activité */
}


p.event {
    font-size: 20px;
    color: white;
    font-family: 'K2D', sans-serif;
    margin: 0 0 20px 0;
    background: rgb(39, 39, 82);
    padding: 10px;
    border-radius: 10px ;
}

h3 {
    font-size: 30px;
    color: white;
    font-family: 'K2D', sans-serif;
    margin: 20px 0 50px 0;
}

p.event img {
    height: 30px;
    margin : 0 10px 0 0;
}

img.create {
    height: 37px !important;
    margin: 0 30px 0 13px !important;
}

img.other {
    height: 40px !important;
    margin: 0 27px 0 8px !important;
}

img.issue {
    height: 35px !important;
    margin: 0 25px 0 11px !important;
}

img.review {
    height: 35px !important;
    margin: 0 25px 0 11px !important;
}

img.star {
    height: 35px !important;
    margin: 0 25px 0 11px !important;
}

.last-item {
    margin-bottom: 0!important;
}

#landscape-footer {
    padding-top: 200px;
}

@media (max-width: 900px) {
    #github-activity {
        padding: 0 20px 0 20px;
    }
}