body {
    font-family: Monaco, Courier, monospace;
    background: rgb(18, 18, 18);
    color: rgb(232, 232, 232);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-sizing: border-box;
}

.my-title {
    color: #ffffff;
    background: rgb(28,28,28);
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-me {
    background: rgb(38, 38, 38);
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-me h3 {
    margin-bottom: 20px; /* Space between header and text */
}

.about-me p {
    line-height: 1.5;
    max-width: 800px;
}

.personal-timeline {
    background: rgb(48, 48, 48);
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline {
    width: 50%;
    margin: 0 auto;
}

.event {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    position: relative;
}

.date {
    width: 30%;
    font-weight: bold;
    text-align: right;
    padding-right: 30px;
}

.event::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 29.75%;
    border-left: 2px solid #dcdcdc;
}

.details {
    width: 70%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    background: rgb(44, 44, 44);
}

.details h4 {
    margin-top: 10px;
}

.details li {
    font-size: 14px;
}

.details p {
    margin-bottom: 10px;
    font-size: 14px;
}


.social-icons {
    background: rgb(58, 58, 58);
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    box-sizing: border-box;
}

.each-social a {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    height: auto;
}

.social-icons a img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

.social-icons a p:hover {
    color: #a7a7a7;
    transform: translateY(-4px);
    text-decoration: underline;
    text-decoration-color: yellow;
    text-underline-offset: 4px;
}