/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Desktop */
body {
    background-color: #020278;
    background-image: url("../assets/icons/windowexe.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
    font-family: Tahoma, sans-serif;
}

/* Desktop Icon */
.desktop-icon {
    position: absolute;
    top: 10px;
    left: 11px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.desktop-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.desktop-icon span {
    margin-top: 1px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.desktop-icon button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.desktop-icon button:hover {
    background: transparent;
    outline: 1px dotted #8f8d8b;
    outline-offset: 1px;
}

/* Taskbar */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: #c0c0c0;
    border-top: 2px solid white;
    display: flex;
    align-items: center;
    padding: 4px;
}

.start-btn {
    width: 70px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #c0c0c0;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    cursor: pointer;
    font-weight: bold;
}

.start-btn:active {
    border-top: 2px solid #555;
    border-left: 2px solid #555;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}

.start-btn img {
    width: 20px;
    height: 20px;
}

.running-apps {
    display: flex;
    gap: 6px;
    margin-left: 10px;
    flex: 1;
}

.app-btn {
    min-width: 120px;
    height: 30px;
    background: #d4d0c8;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 8px;
    font-family: Tahoma, sans-serif;
    font-weight: bold;
}

.app-btn img {
    width: 18px;
    height: 18px;
}

.app-btn span {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-btn.active {
    background: #bcbcbc;
    border-top: 2px solid #555;
    border-left: 2px solid #555;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}

.system-tray {
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-left: 2px solid gray;
}

.clock-date {
    font-weight: bold;
    padding-right: 8px;
    border-right: 2px solid gray;
}

.clock-day {
    font-weight: bold;
    padding-right: 8px;
    border-right: 2px solid gray;
}

.clock {
    font-weight: bold;
}

/* About me */
.About-me {
    position: absolute;
    top: 100px;
    left: 11px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.About-me img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.About-me span {
    margin-top: 5px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.About-me button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.About-me button:hover {
    background: transparent;
    outline: 1px dotted #8f8d8b;
    outline-offset: 1px;
}

/* ABOUT ME WINDOW */

/* ABOUT CONTAINER */
.about-container {
    display: flex;
    gap: 30px;
}

/* PROFILE */
.profile-section {
    width: 180px;
}

.profile-image {
    width: 160px;
    height: 180px;
    object-fit: cover;

    border-top: 2px solid gray;
    border-left: 2px solid gray;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}

/* TEXT */
.about-section {
    flex: 1;
    font-family: Tahoma;
    color: black;
}

.about-section h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.about-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000080;
}

.about-section p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
}

.about-section hr {
    margin: 15px 0;
}

.about-section ul {
    margin-left: 22px;
}

.about-section li {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Project */
.Project {
    position: absolute;
    top: 205px;
    left: 11px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.Project img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.Project button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Project span {
    margin-top: 1px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.Project button:hover {
    background: transparent;
    outline: 1px dotted #8f8d8b;
    outline-offset: 1px;
}

/*PROJECTS*/

.projects-container {
    font-family: Tahoma, sans-serif;
}

.projects-container h1 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #000080;
}

.projects-container hr {
    margin-bottom: 20px;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #d4d0c8;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid gray;
    border-bottom: 2px solid gray;
    padding: 15px;
    margin-bottom: 20px;
}

.project-card img {
    width: 70px;
    height: 70px;
}

.project-info {
    flex: 1;
}

.project-info h2 {
    font-size: 22px;
    color: #000080;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 24px;
}

.project-info span {
    display: inline-block;
    background: #c0c0c0;
    padding: 4px 10px;
    font-size: 13px;
    margin-bottom: 15px;
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
}

.project-buttons {
    display: flex;
    gap: 10px;
}

.project-buttons button {
    width: 90px;
    height: 28px;
    background: #d4d0c8;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid gray;
    border-bottom: 2px solid gray;
    font-family: Tahoma;
    cursor: pointer;
}

.project-buttons button:active {
    border-top: 2px solid gray;
    border-left: 2px solid gray;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}

/* Experience */
.experience {
    position: absolute;
    top: 290px;
    left: 11px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.experience img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.experience button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience span {
    margin-top: -7px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.experience button:hover {
    background: transparent;
    outline: 1px dotted #8f8d8b;
    outline-offset: 1px;
}

/* Contact me */
.Contact-me {
    position: absolute;
    top: 379px;
    left: 11px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.Contact-me img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.Contact-me button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Contact-me span {
    margin-top: 1px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.Contact-me button:hover {
    background: transparent;
    outline: 1px dotted #8f8d8b;
    outline-offset: 1px;
}

/* Game */
.game {
    position: absolute;
    top: 570px;
    left: 11px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.game img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.game button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game span {
    margin-top: -5px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.game button:hover {
    background: transparent;
    outline: 1px dotted #8f8d8b;
    outline-offset: 1px;
    width: 50px;
    height: -40px;
    padding-top: 0%;
}

/* Spotify */
.song {
    position: absolute;
    top: 5px;
    left: 111px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.song img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.song button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.song span {
    margin-top: 1px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.song button:hover {
    background: transparent;
    outline: 1px dotted #8f8d8b;
    outline-offset: 1px;
}

/* Terminal */
.terminal {
    position: absolute;
    top: 100px;
    left: 111px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.terminal img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.terminal button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.terminal span {
    margin-top: 1px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.terminal button:hover {
    background: transparent;
    outline: 1px dotted #8f8d8b;
    outline-offset: 1px;
}

/*resume*/
.resume {
    position: absolute;
    top: 486px;
    left: 11px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.resume img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.resume button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resume span {
    margin-top: 0px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.resume button:hover {
    background: transparent;
    outline: 1px dotted #8f8d8b;
    outline-offset: 1px;
}

/*mail*/
.mail {
    position: absolute;
    top: 205px;
    left: 111px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.mail img {
    width: 51px;
    height: 51px;
    object-fit: contain;
}

.mail button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mail span {
    margin-top: -5px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.mail button:hover {
    background: transparent;
    outline: 1px dotted #8f8d8b;
    outline-offset: 1px;
}

/*github*/
.github {
    position: absolute;
    top: 290px;
    left: 111px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.github img {
    width: 51px;
    height: 51px;
    object-fit: contain;
}

.github button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.github span {
    margin-top: -1px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.github button:hover {
    background: transparent;
    outline: 1px dotted #8f8d8b;
    outline-offset: 1px;
}

/*linkedIn*/
.linkedIn {
    position: absolute;
    top: 385px;
    left: 111px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.linkedIn img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.linkedIn button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.linkedIn span {
    margin-top: 5px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.linkedIn button:hover {
    background: transparent;
    outline: 1px dotted #8f8d8b;
    outline-offset: 1px;
}

/* EXPERIENCE WINDOW */
.experience-container h1 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #000080;
}

.experience-container hr {
    margin-bottom: 20px;
}

.exp-card {
    background: #d4d0c8;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid gray;
    border-bottom: 2px solid gray;
    padding: 15px;
    margin-bottom: 20px;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.exp-header h2 {
    font-size: 20px;
    color: #000080;
}

.exp-date {
    font-size: 13px;
    color: #333;
}

.exp-card p {
    font-size: 15px;
    line-height: 22px;
}

.exp-card ul {
    margin-left: 20px;
}

/* CONTACT WINDOW */
.contact-container h1 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #000080;
}

.contact-container hr {
    margin-bottom: 20px;
}

.contact-links {
    margin-bottom: 25px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #d4d0c8;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid gray;
    border-bottom: 2px solid gray;
    padding: 12px 15px;
    margin-bottom: 12px;
    font-size: 16px;
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.contact-row:hover {
    background: #c8c4bc;
}

.contact-row-static {
    cursor: default;
}

.contact-row-static:hover {
    background: #d4d0c8;
}

.contact-row img {
    width: 32px;
    height: 32px;
}

/* TERMINAL WINDOW */
.terminal-window-body {
    padding: 0;
    background: #000000;
}

.terminal-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    color: #c0c0c0;
    font-family: "Consolas", "Courier New", monospace;
    font-size: 14px;
    line-height: 1.4;
    padding: 8px;
    overflow-y: auto;
    box-sizing: border-box;
    cursor: text;
}

.terminal-output {
    white-space: pre-wrap;
    word-break: break-word;
}

.terminal-output .term-line {
    min-height: 1.4em;
}

.terminal-output .term-echo {
    color: #ffffff;
}

.terminal-output .term-error {
    color: #ff5555;
}

.terminal-output .term-ok {
    color: #55ff55;
}

.terminal-output .term-dim {
    color: #808080;
}

.terminal-output a {
    color: #55ffff;
}

.terminal-input-line {
    display: flex;
    align-items: center;
}

.terminal-prompt {
    color: #c0c0c0;
    margin-right: 6px;
    white-space: nowrap;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: "Consolas", "Courier New", monospace;
    font-size: 14px;
    caret-color: #ffffff;
    padding: 0;
    margin: 0;
}

.terminal-screen::-webkit-scrollbar {
    width: 17px;
}

.terminal-screen::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.terminal-screen::-webkit-scrollbar-thumb {
    background: #4d4d4d;
    border-top: 2px solid #808080;
    border-left: 2px solid #808080;
    min-height: 35px;
}

/* RESUME WINDOW */
.resume-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 24px;
}

.resume-preview {
    width: 220px;
    height: 280px;
    background: white;
    border-top: 2px solid gray;
    border-left: 2px solid gray;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resume-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.resume-actions {
    display: flex;
    gap: 14px;
}

.resume-actions button {
    width: 110px;
    height: 32px;
    background: #d4d0c8;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid gray;
    border-bottom: 2px solid gray;
    font-family: Tahoma, sans-serif;
    font-size: 14px;
    cursor: pointer;
}

.resume-actions button:active {
    border-top: 2px solid gray;
    border-left: 2px solid gray;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}

.mail a,
.github a,
.linkedIn a {
    text-decoration: none;
    color: inherit;
}

/* START MENU */
.start-menu {
    position: fixed;
    bottom: 35px;
    left: 0;
    width: 300px;
    max-height: 520px;
    background: #d4d0c8;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, .45);
    display: none;
    z-index: 5000;
    font-family: Tahoma, sans-serif;
}

.start-menu.open {
    display: flex;
}

.start-menu-side {
    width: 42px;
    background: #a2a3a7;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 33px;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 14px 0;
}

.start-menu-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.start-menu-apps {
    flex: 1;
    overflow-y: auto;
    padding: 6px 0;
}

.start-menu-apps::-webkit-scrollbar {
    width: 14px;
}

.start-menu-apps::-webkit-scrollbar-track {
    background: #d4d0c8;
}

.start-menu-apps::-webkit-scrollbar-thumb {
    background: #C0C0C0;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
}

.start-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    padding: 8px 14px;
    font-size: 14px;
    font-family: Tahoma, sans-serif;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
}

.start-menu-item:hover {
    background: #1B2689;
    color: white;
}

.start-menu-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.start-menu-divider {
    height: 1px;
    background: #808080;
    margin: 4px 8px;
}

.shutdown-screen {
    width: 100vw;
    height: 100vh;
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Tahoma, sans-serif;
    font-size: 20px;
}

.skills {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    color: #5f6b7a;
    line-height: 1.8;
}

.skills p {
    margin: 0;
}

.skills span {
    margin: 0 10px;
    color: #9ca3af;
}

.education h4 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.school {
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #000;
}

.school:last-child {
    border-bottom: none;
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top h3 {
    margin: 0;
    font-size: 1.2rem;
}

.top span {
    color: #6b7280;
    font-family: monospace;
}

.school p {
    margin: 6px 0;
    color: #6b7280;
}


.model-results {
    display: flex;
    gap: 12px;
    margin: 8px 0 22px;
    flex-wrap: wrap;
}

.model-card {
    width: 80px;
    padding: px 10px;
    text-align: center;

    background: #c0c0c0;

    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;

    box-sizing: border-box;
}

.model-card .score {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-bottom: 6px;
}

.model-card .model-name {
    font-size: 13px;
    color: #333;
}

.timeline-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
    margin-top: 14px;
    text-align: left;
    font-weight: 200;
}

.timeline-date {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: bold;
    color: #000080;
}

.timeline-content h2 {
    margin: 0;
    font-size: 20px;
}

.timeline-content h3 {
    margin: 6px 0 15px;
    font-size: 16px;
    font-weight: normal;
    color: #444;
}

.timeline-content ul {
    margin: 0;
    padding-left: 20px;
}

.timeline-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.timeline-content {
    background: #c0c0c0;
    padding: 18px;
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
}

.timeline-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 400;
    color: #444;
    margin-bottom: 16px;
}

.timeline-date {
    font-size: 15px;
    font-weight: 600;
    color: #000080;
}

.experience-container {
    padding: 20px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.timeline-item {
    margin-bottom: 0;
}

.timeline-content {
    background: #c0c0c0;
    padding: 20px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
}

.timeline-item:last-child {
    margin-bottom: 0;
}
