/* CSS for the Experience Page */
.work{
    margin-left: 1%;
    margin-right: 1%;;
    border: 2px solid;
    border-radius: 1px;
}
.job{
    margin: 1%;
    border: 4px solid;
    border-radius: 5px;
    color: black;
    display: grid;
    padding: 1%;
    grid-template-areas: 
        "title      image"
        "company    image"
        "dates      image"
        "site       image"
        "desc       desc"
        "skills     skills";
}
.job h2{
    grid-area: title;
    max-width: 100%;
}
.job h3{
    grid-area: company;
    max-width: 100%;
}
.job h4{
    grid-area: dates;
    max-width: 100%;
}
.job a{
    grid-area: site;
    padding-bottom: 2%;
    text-decoration: none;
    font-style: italic;
    color: inherit;
}
.job img{
    grid-area: image;
    max-width: 5em;
    margin-left: auto;
    margin-right: 4%;
}
.job p{
    padding: 1%;
    border-top: 2px solid;
    border-color: inherit;
    grid-area: desc;
    max-width: 90%;
    
}
.site{
    grid-area: site;
}
.skills {
    display: flex;
    justify-content: center;
    grid-area: skills;
}
.skills ul {
    width: 50%;
    list-style: "- ";
    padding: 0 25px;
}
.skills li{
    padding-left: 25px;
}
.right{
    border-left: darkgray 2px solid;
}
.classlink{
    border-color: #0a4d7f;
}
.target{
    border-color: #cc0000;
}
.toga {
    border-color: #171493;
}

/* Mobile */
@media (max-width:480px){
    .work{
        border: none;
        margin: 0;
    }
    .job{
        border-width: 4px 0px;
        border-radius: 0;
        margin: 0;
        margin-bottom: 2px;
    }
    p{
        margin-top: 5px;
        width: 100%;
    }
    img{
        position: relative;
        right: 10px
    }
}