 *{
    box-sizing: border-box;
 }

.content{
    display: grid;
    grid-template-areas:
    "header " 
    "content" 
    "footer ";
    grid-template-rows: .5fr 5fr .5fr;
}

.dynamic-holder{
    grid-area:content;
    grid-template-rows: subgrid;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}

 body{
    padding:0px;
    margin:0px;
    height:100vh;
    width:100vw;
}

.jobs.experience {
    background: white;
    font-size: medium;
    margin: 12px auto;
    white-space: wrap;
    width: 90%;
}

.jobs.experience.role {
    font-size: 24px;
    text-align: center;
    font-weight: bolder;
    background-color: black;
    width: 100%;
    padding: 5px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: white;
}

.jobs.experience.time {
    font-size: medium;
    color: white;
    background-color: black;
    width: 100%;
    text-align: center;
    margin-top: 0;
    padding-bottom: 12px;
}

.jobs.experience.summary{
    margin: 12px;
    letter-spacing: 1px;
}

.jobs.experience.more{
    text-align:right;
    color:#193099;
}

.experience.rate {
    font-size: 36px;
    text-align: center;
    align-content: center;
    color: white;
}

.experience.success>h3{
    font-size:25px;
    color:darkgreen;
    margin:0px;
    margin-left:-30px;

}

.experience.fail>h3{
    font-size:25px;
    color:red;
}

.experience.fail, .experience.success {
    font-size: inherit;
    list-style: square;
    text-align:left;
    width:auto;
    margin-left: 15px;
}

.jobs, .projects{
    }

.jobs{
    background-color: #193099;
    grid-column:1;
    display: flex;
    flex-direction: column;
}

.jobs.class-header{
    color:white;
}

.projects{
    background-color: #eacd48;
    margin: auto;
    grid-column-start: 2;
    grid-column-end: 4;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.projects-mini{
    margin: 0px auto;
    padding: 12px 0px;
    width: 100%;
    height: 100%;
    overflow:auto;
}

.projects-mini-title{
    font-size: 24px ;
    font-weight: bold;
    text-align:center;
    background: black;
    color:#eacd48;
    margin:auto;
    width: 90%;
}   

.projects-mini-view{
    margin: auto;
    border:none;
    width: 90%;
    height: 100%;
    display:block;
}

.projects.class-header{
    height:auto;
}

.resume{
    width: inherit;
    height: inherit;
}

.class-header{
    font-size: 36px;
    margin: 12px auto;
    width: fit-content;
}

#jobs-more{
    font-size: 24px;
    text-align: right;
    margin: auto;
    height: 1.5em;
    align-items: center;
    color: white;
    word-spacing: 2px;
    text-decoration: underline double 2px;
    text-decoration-color: #eacd48;
}


/* Header */
.header{
    grid-area: header;
    background-color:#4865ea;
    color:#eacd48;
    margin:0;
    width:100%;
    display: flex;
    align-items: anchor-center;
    flex-direction: column;
    padding: 2px;
}

.header.main{
    font-size: 36px;
}

.header.menu {
    font-size: 24px;
    margin: auto;
    font-weight: bold;
    display: flex;
    flex-direction: row
}

.header *{
    color: #eacd48;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.header h1{
    margin-bottom:0px;
    margin-top:auto;
}

.header-name{
    margin: auto;
    display: contents;
}

.header.menu a{
    margin:12px;
}
