body,
html {
    height: 100%;
    max-width:1080px;
    min-width: 640px;
    margin: 0px;
}

body {
    font-family: ff-scala-sans-pro, sans-serif;
    font-size: 1em;
    background-image: url(images/background.png);
    /* margin: 0; */
    /* width: 10%; */
}



.container {
    display: grid;
    width: 100vw;
    height: 100vh;
    grid-template-areas:
        "header     header  header"
        "left       main    right"
        "footer     footer  footer";
    grid-template-columns: 50px 4fr 50px;
    grid-template-rows: 160px auto 1fr;
}

.container>div {
   
}

.header {
    grid-area: header;
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* flex-flow: ; */
}


.backlink {
    justify-items: flex-end;
    /* flex-grow: 2; */
    /* display: flex; */
    width: 200px;
    color: #b4a200;  

}

.backlink:hover, .backlink:active {
    color: #ffffff;
}

.backlink:visited {
    color: #b4a200; 
}

.social{
    /* flex-grow: 2; */
    width: 200px;
}
.header>div {
    /* border: 1px dashed #ff0000; */
    background-color: rgb(0, 39, 5);
    margin-top: 40px;
    margin-bottom: 40px;
}

#logo {
    display: flex;
    padding-left: 3em;
    /* justify-content: center; */
    flex-grow: 1;

}

#social {
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-grow: 1;

}

#main {
    grid-area: main;
    /* display: grid; */
    justify-content: center;
    align-items: center;
}

.left {
    grid-area: left;
}

.right {
    grid-area: right;

}

.footer {
    grid-area: footer;
    background-color: #004605;

    padding: 50px 20%;
    font-size: 1.5em;
    
}

/* //////////////// NAV LINKS //////////////// */

nav {
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

nav a {
    letter-spacing: 2px;
    font-size: .8em;
    font-weight: 600;
    padding: 4px 7px;
    margin: 0 10px;
    text-transform: uppercase;
    text-decoration: none;

    border-radius: 3px;
}

/* unvisited link */
nav a:link,
nav a:visited {
    color: #ffffff;
    background-color: #4f9cd6;
}

/* mouse over link */
nav a:hover,
n.navbar v a:active {
    color: #4f9cd6;
    background-color: rgb(176, 206, 243)
}

h1 {
    font-family: cooper-black-std, serif;
    color: #888;
    font-size:3em;
}

h1,h3, h5{
    text-align: center;


}

.about-text {
    margin-left: 40px;

}

.fixed-footer {
   position: fixed;
   display: flex;
   padding-left: 40px;
   left: 0;
   bottom: 0;
   width:100vw;
   background-color: whitesmoke;
   box-shadow: 10px 10px 100px black;
   color: white;
   text-align: left;
}
 .contact {
    margin-right: 100px;
 }
/* Grid */

/* div#digitalart > div.lb-image > a.example-image-link > img.example-image {
    width: 20%;
    float: left;
}

div#digitalart {
    width: 100%;
}

div#photoshop > div.lb-image > a.example-image-link > img.example-image {
    width: 33.3%;
    float: left;
}

div#photoshop {
    width: 100%;
}

h1#digitalart {
    width: 100%
}

h1#photoshop {
    width: 100%;
}

div#paintings > div.lb-image > a.example-image-link > img.example-image {
    width: 25%;
    float: left;
}

div.head {
    width: 100%;
    margin-left: 39em;
} */
