body {
    background-color: #282828;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

ul {
    margin-top: 40%;
    list-style-type: none;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
}

ul li {
    margin-bottom: 25%;
}

a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .exp-layout {
        display: none;
    }

    .exp-m-layout {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    #exp-m-menu {
        color: white;
        text-align: center;
    }

    .exp-m-menu-item {
        font-weight: bold;
        margin-bottom: 10px;
        padding: 4px;
        border: 2px solid white;
        border-radius: 6px;
        color:white;
    }

    .exp-m-menu-item:hover {
        color: #FF4B4B;
        border-color: #FF4B4B;
    }

    .exit-button {
        border: 1px solid white;
        border-radius: 6px;
        text-align: center;
        padding: 4px;
        font-weight: bold;
    }
    
    .exp-tabs {
        height: 100%;
        font-weight: bold;
        max-width: 500px;
    }

    .exp-tabs > div {
        font-weight: bold;
        margin-bottom: 10px;
    }

    .exp-tab-title {
        font-size: 30px;
        color: #FF4B4B;
        text-align: center;
        padding-top: 10px
    }

    .exp-tab-date {
        text-align: center;
        padding-bottom: 10px;
        color: #FF4B4B;
    }

    .company-paragraph {
        margin-left: 10px;
        margin-right: 10px;
        padding-bottom: 20px;
        line-height: 20px;
    }

    #visiv-single {
        display: none;
        width: 100%;
    }

    #compliahealth-single {
        display: none;
        width: 100%;
    }

    #ymbl-single {
        display: none;
        width: 100%;
    }

    #school-single {
        display: none;
        width: 100%;
    }

}

@media (min-width: 769px) {
    .exp-m-layout {
        display: none;
    }

    .exp-layout {
        display: grid;
        grid-template-columns: 1fr 2fr;
    }

    .exp-timeline {
        grid-column: 1;
    }

    .exp-descriptions {
        grid-column: 2;
        display: inline-grid;
        grid-template-rows: 1fr 12fr;
        margin-left: 20%;
    }

    .exp-menu {
        grid-row: 1;
        display: flex;
        font-weight: bold;
        font-size: 20px;
        padding-top: 10px
    }

    .exp-menu > div {
        margin-left: 10%;
    }
    .exp-menu-link {
        color: white;
    }

    .exp-companies {
        grid-row: 2;
    }

    .menu-item:hover {
        color: #FF4B4B;
    }

    .company {
        margin-bottom: 10%;
    }

    .company-name {
        font-size: 32px;
        font-weight: bold;
        color: #FF4B4B;
    }

    .company-position {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .company-paragraph {
        margin-bottom: 20px;
        line-height: 20px;
        margin-right: 40px;
    }

    .design-section {
        display: flex;
        /* flex-direction: column; */
        min-height: 100vh;
        padding: 100px 0;
    }
    
    .timeline {
        width: 80%;
        height: auto;
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .timeline-link {
        color:white;
    }

    .timeline-component {
        margin: 0px 20px 20px 20px;
    }

    .timeline {
        display: grid;
        grid-template-columns: 1fr 3px 1fr;
    }

    .timeline-middle {
        position: relative;
        background-image: linear-gradient(45deg, #FF4B4B, #FF4B4B, #FF4B4B);
        width: 3px;
        height: 100%;
    }

    .sidebar {
        width: 200px;
        height: 100vh; /* Make the sidebar as tall as the viewport */
        position: -webkit-sticky; /* For Safari */
        position: sticky;
        top: 0;
        /* background-color: #f4f4f4; */
        padding: 20px;
        /* box-shadow: 2px 0 5px rgba(0,0,0,0.1); */
    }

    .main-middle {
        opacity: 0;
    }
}