 .skill-container {
     display: flex;
     flex-direction: column;
     align-items: left;
}
 .skill-diagram {
     width: 200px;
     height: 20px;
     background-color: #eee;
     position: relative;
}
 .skill-level {
     height: 100%;
     background-color: #007bff;
     position: absolute;
}
 .percentage {
     font-weight: bold;
}
 .skill-name {
     font-weight: bold;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px;
    position: relative;
    word-wrap: break-word;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.timeline-content {
    background-color: #f3f3f3;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    width: 100%;
    word-wrap: break-word;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dark-mode-text p {
  color: black;
}
.dark-mode-text h3 {
  color: black;
}

.dark-mode-text li {
  color: black;
}
