/* RESUME */

.identity {
    font-size: 2em;
    font-family: 'Hoss Sharp', sans-serif;
    padding-left: 0em;
    color:rgb(204, 255, 51);
    margin: -.2em 0em -1.2em 0em;
}
.contact-resume {
    font-family: 'Hoss Sharp', sans-serif;
    font-size: medium;
    padding-left: 0em;
    padding-bottom: 1em;
    color: rgb(98, 125, 17);
}
.contact-resume a:link {
    text-decoration: none;
    color:rgb(98, 125, 17);
}
.contact-resume a:hover {
    color:rgb(204, 255, 51);
}
.contact-resume a:active {
    color:rgb(85, 109, 14);
}

.resume-body {
    display: grid;
    font-family: Baskerville, 'Times New Roman', Times, serif;
}
h3 {
    font-family: 'Hoss Sharp', sans-serif;
    color:rgb(98, 125, 17);
    margin: 1em 0em -.3em 0em;
}

.identity { 
    grid-area: identity; 
}
.contact-resume { 
    grid-area: contact; 
}
.objective { 
    grid-area: objective;
    margin: 0em 2em -2em 0em; 
}
.experience { 
    grid-area: experience;
    margin: 0em 3em 5em 1em; 
}
.education { 
    grid-area: education;
    margin-bottom: 0.5em;
}

.skills { 
    grid-area: skills;
    margin: -2em 0em 8em 0em;
    background-image: url(../images/flowericon.svg);
    background-size: 50%;
    background-position-y: 0em;
    background-repeat: repeat-x;
    padding-top: 10.2em;
}
.experience .title {
    font-family: 'Hoss Sharp', sans-serif;
    font-weight: bold;
    color:rgb(98, 125, 17);
 }

 .experience dd {
    padding: .5em 5em 1em 0em;
    margin-left: 0em;
 }
 .experience dt {
    padding-bottom: 0.2em;
 }
 .placetime {
    font-family: Baskerville, serif;
    color: rgb(85, 109, 14);
    background-size: 14em;
    background-image: linear-gradient(to right, rgba(204, 255, 51, 0.44) , white);
    background-repeat: no-repeat;
    padding-top: 0.1em;
 }

 .education dd {
    margin-left: 0em;
 }
 .education dt {  
 }

.grid-container {
    display: grid;
    gap: 1em 3em;
    padding: 0em 7em 3em 15em;
    /* background-color: rgb(204, 255, 51);
    background-size: 40em;
    background-position: 1em;*/
    grid-template-areas:
    'identity identity identity'
    'contact contact contact'
    'objective experience experience'
    'education experience experience'
    'skills experience experience'
    /* 'education education skills' */
    ;
}