* {
    box-sizing: border-box;
}

/*=========== BODY ===========*/

body {
    background-color: rgba(1,38,31,.65);
    background-attachment: fixed;   
    display: grid;
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
    grid-template-rows: minmax(0px, auto);
    margin: 0;
    font-family: Georgia, sans-serif;
    color: #AAB1BF;
}

#wrapper {
    margin: 0 auto;
    grid-area: 1 / 2 / -1 / -2;
    background-color: #A6A6A6;
    display: grid;
    grid-template-columns: 7rem minmax(0px, auto) 7rem;
    grid-template-rows: minmax(auto, auto) minmax(3rem, auto) minmax(0px, auto) minmax(3rem, auto);
    box-shadow: 0px 0px 5px rgba(0,0,0,.4);
}

body #wrapper #main-header {
    grid-column: 2 / -2;
    grid-row: 1 / 2;
    height: inherit;
    color: #01402E;
    font-size: 3rem;
    text-align: center;
    vertical-align: middle;
    font-style: italic;
    padding-bottom: .2rem;
}

/*=========== NAV ============*/

body #wrapper nav {
    background-color: #262626;
    height: 3rem;
    grid-column: 2 / -2;
    grid-row: 2 / 3;

    display: grid;
    position: sticky;
    top: 0;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    overflow: hidden;
    padding: 0;
    text-align: center;
} body #wrapper #nav-background {
    background-color: #262626;
    height: 3rem;
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    position:sticky;
    top: 0;
}

body #wrapper nav .nav-item-div {
    height: 100%;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    background-color: #262626;
} body #wrapper nav a {
    text-decoration: none;
    color: inherit;
}

body #wrapper nav #current-div a {
    color: #68A694;
} body #wrapper nav #current-div {
    background-color: #01261F;
}

/*=========== MAIN ============*/

body #wrapper #main-background {
    grid-column: 1 / -1;
    grid-row: 3 / 4;
    background-image: url(Images/concertBackgroundImageGreyCompressed.jpg);
    background-size: 116%;
    background-repeat: no-repeat;
    background-position-x: 80%;
}

body #wrapper #main {
    grid-column: 2 / -2;
    grid-row: 3 / 4;
    margin-top: 8rem;
    border-radius: .3rem .3rem .3rem .3rem;
    background-color: rgba(0,0,0,0.6);
    overflow: hidden;
}

/*======= MAIN CONTENT =======*/

body #wrapper #main h2 {
    display: inline-block;
    margin: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    background-color: rgba(3,114,93,.2);
}

body #wrapper #main .content-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 4rem;
    padding-right: 4rem;
    background-color: rgba(0,0,0,.4);
}

/*== Images ==*/

body #wrapper #main .content-image {
    float: left;
    height: 8.6rem;
    width: 8.6rem;
    margin: 0rem 1rem 1rem 0rem;
} #content1-image {
    background-image: url(Images/image-placeholder.jpg);
    background-size: contain;
} #content2-image {
    background-image: url(Images/image-placeholder.jpg);
    background-size: contain;
}

/*== Text ==*/

body #wrapper #main .content-text {
    font-size: 1.4rem;
}

/*== PROJECT SHELF ==*/

body #wrapper #main .project-shelf {
    height: 140px;
    width: 100%;
    display: inline-block;
    overflow-x: scroll;
    white-space: nowrap;
    background-color: rgba(255,255,255,.2);
}

body #wrapper #main .project-shelf a {
    text-decoration: none;
    color: inherit;
}

body #wrapper #main .project-shelf .project-div {
    width: 100px;
    height: 100px;
    background-color: rgba(1,38,31,.55);
    box-shadow: 0px 0px 3px rgba(0,0,0,.4);
    padding-top: 5px;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: .2rem;
    text-align: center;
    display: inline-block;
}

body #wrapper #main .project-shelf .project-div .project-image {
    height: 70%;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
} .project1-image {
    background-image: url(Images/image-placeholder.jpg);   
}

body #wrapper #main .project-shelf .project-div .project-name {
    margin-top: .2rem;
    font-size: 1.1rem;
}

/*=========== FOOTER ============*/

body #wrapper footer {
    grid-column: 2 / -2;
    grid-row: 4 / 5;
    color: black;
    font-size: .6rem;
    font-style: italic;
    text-align: left;
    padding: 1em;
} body #wrapper footer a {
    color: inherit
}
