.myPage {
    padding-top: 200px;
}

.description {
    margin-top: 60px;
}

.gif-pc {
    border-radius: 120px;
}

.name {
    margin-top: 30px;
}

.titleName {
    font-size: 30px;
    margin-bottom: 30px;
}

.title {
    margin-top: -15px;
}

.titleProjects {
    margin-top: 35px;
}

.aPropos, .competences, .parcours {
    border: solid;
    border-color: #3c3d40;
    border-radius: 25px;
    padding-bottom: 25px;
}

.aPropos, .parcours {
    margin-bottom: 30px;
}

.competenceIcon {
    height: 100px;
    padding: 5px;
    border-radius: 15px;
}

.iconsCompetences {
    margin-top: 30px;
    margin-bottom: 15px;
}

.iconText {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    color: #1a1b1e;
    padding: 5px;
    border-radius: 5px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrainsMono', monospace;
}

.competenceIconContainer {
    position: relative;
    display: inline-block;
}

.competenceIconContainer:hover .iconText {
    display: block;
}

.descriptionMe {
    font-size: 16px;
    margin-top: 30px;
}

.timeline {
    position: relative;
    margin: 50px 0;
    padding: 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #3c3d40;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item .content {
    padding: 20px;
    position: relative;
    border-radius: 50%;
    color: #1a1b1e;
    background-color: #f1f1f1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.timeline-item .content p {
    margin: 0;
    line-height: 1.5;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #3c3d40;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item.left::before {
    right: -10px;
}

.timeline-item.right::before {
    left: -10px;
}

@media screen and (max-width: 768px) {
    .timeline::before,
    .timeline-item::before {
        display: none;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding: 20px 0;
    }

    .timeline-item .content {
        width: 90%;
        height: auto;
        border-radius: 20px;
        padding: 20px;
        margin: 0 auto;
    }
}