.header {
    color: white;
}

.aboutme-content {
    margin-top: 10rem;
    display: flex;
    flex-wrap: wrap;
    color: white;
}

.aboutme-text {
    max-width: 500px;
    margin: 2rem;
}

.aboutme-img>img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border: #fff9 solid 2px;
}

p {
    font-family: var(--font-secondary);
}

/*start project*/
.project {
    padding: 1rem;
    background-color: #232323;
    color: white;
    margin-top: 18rem;
    margin-bottom: 10rem;
}
.project>h2 {
    margin: 0;
}

.timeline {
    border-left: 4px solid #fff9;
    padding: 1rem 0;
    width: fit-content;
    margin-left: 2rem;
}

.timeline-date {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    font-weight: 800;
    padding: 0.5rem;
    background-color: #c23941;
    width:fit-content;
    margin-left: 0rem;
}

.timeline-entry {

    background-color: #333;
    color: #fff;
    border-radius: 1rem;
    margin: 2rem;
    width: fit-content;

    border-left: #c23941 5px solid;
}

.timeline-entry>summary {
    list-style: none;
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 1.5rem;
    padding: 1rem;
    padding-right: 5rem;
}
.timeline-entry>p {
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem;
    margin: 0;
}