:root {
    scrollbar-color: #64AD2B #67ed00;
    scrollbar-width: thin;
    --green: #4F6E37;
    --light-green: #64AD2B;
    --neon-green: #66ED00;
    --grey: #161616;
    --blue: #009DD6;
    --off-white: #f1f1f1;
    --garamond: "EB Garamond", serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
   
}

html {
    font-family: var(--garamond);
    font-optical-sizing: auto;
    font-weight: 100;
    font-size: 120%;
    font-style: normal;
    font-kerning: 0.5pt;
    word-spacing: 0.5pt;
    letter-spacing: 0.2pt;
    color: var(--neon-green);
    background: var(--green);
    display: flex;
    text-shadow: 0 0 0.5em var(--light-green);
}

body {
    display: flex;
    min-height: 100vh;
    background: none;
}

canvas {
    height: 100%;
    display: block;
    position: fixed;
    z-index: 1;
}

.page-wraper {
    position: absolute;
    width: 90vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
    z-index: 2;
}

div .div1,.div2,.div3,.div4,.div5,.div6,.div7,.div8,.div9{
    z-index: 2;
}

section {
    margin: 0;
    padding: 0;
    top: 50px;
    background: none;
}

section.about, section.statement, section.projects, section.design, section.art, section.contact {
    width: 90%;
    height: 100%;
    padding: 5px;
    display: flex;
    position: relative;
    z-index: 3;
}

article {
    margin: 0;
    background: none;
}

div {
    margin: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

h1 {
    padding: 0;
    font-weight: 500;
    font-size: 36pt;
    color: var(--light-green);
}

h2 {
    font-weight: 400;
    font-size: 24pt;
    color: var(--light-green);
}

p {
    width: 75%;
    line-height: normal;
    letter-spacing: normal;
}

a {
    text-decoration: none;
    color: var(--light-green);
}

a:hover{
    text-decoration: none;
    color: var(--neon-green);
}

/* navigation bar*/
header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    z-index: 3;
}

nav {
    overflow: hidden;
    width: 100%;
    height: 50px;
    top: 0;
    left: 191px;
    right: 285px;
}

li {
    display: inline;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0;
}

nav ul li {
    list-style: none;
}

nav ul li {
    font-weight: 200;
    font-style: normal;
    font-size: 16pt;
}

nav ul li a {
    text-decoration: none;
    color: var(--light-green);
}

nav ul li a:hover {
    color: var(--neon-green);
}
/* end navigation bar*/

img {
    size: 100vw;
    width: 650px; 
    height: 560px;
    padding: auto;
    margin: 0;
    object-fit: cover;
    border-radius: 5pt;
    opacity: 80%;
    filter: drop-shadow(0.2rem 0 0.3rem var(--neon-green));
}

video {
    width: 650px; 
    height: 560px;
    object-fit: cover;
    border-radius: 5pt;
    opacity: 80%;
    filter: drop-shadow(0.2rem 0 0.3rem var(--neon-green));
}

div.grid {
    max-height: 600px;
    width: 90vw;
    padding: 0;
    margin: 5px;
    flex-direction: column;
    flex-wrap: wrap;
    columns: 2;
    column-gap: 5px;
}

div.scroll-container {
  width: 800px;
  /*background-color: var(--green);*/
  overflow: auto;
  white-space: nowrap;
  border-radius: 5pt;
}

div.scroll-container::-webkit-scrollbar {
  width: 5px;
}

div.scroll-container::-webkit-scrollbar-track {
  background: var(--green);
}