@charset "UTF-8";

@font-face {
    font-family: AvenirBlack;
    src: url(fonts/AvenirLTStd-Black.otf);
}

@font-face {
    font-family: SplineSansMono;
    src: url(fonts/SplineSansMono-SemiBold.ttf);
}

@font-face {
    font-family: TiltNeon;
    src: url(fonts/TiltNeon-Regular.ttf);
}

[data-theme="light"],
:root:not([data-theme="dark"]) {
    --background-color: rgb(232, 234, 221);
    --primary: rgb(61, 94, 38);
    --secondary: rgb(84, 118, 52);
    --dark: rgb(24, 43, 2);
    --grey: rgba(0, 0, 0, 0.4);
    --font-family: TiltNeon;
    --grid-spacing-horizontal: 75px;
    --font-size: 13pt;
    line-height: 15.5pt;
    color: var(--primary);
}

@media (min-width: 576px) {
    .container {
      max-width: 510px;
      padding-right: 0;
      padding-left: 0;
    }
  }
  @media (min-width: 768px) {
    .container {
      max-width: 700px;
    }
  }
  @media (min-width: 992px) {
    .container {
      max-width: 920px;
    }
  }
  @media (min-width: 1200px) {
    .container {
      max-width: 1130px;
    }
  }
  @media (min-width: 1400px) {
    .container {
      max-width: 1230px;
    }
  }

.grid {
    grid-column-gap: var(--grid-spacing-horizontal);
    grid-row-gap: var(--grid-spacing-vertical);
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
  }

@media (min-width: 992px) {
.grid {
    grid-template-columns: repeat(2, 0.5fr);
}
}
.grid > * {
min-width: 0;
}

div.small-line {
    background-color: var(--grey);
    height: 5pt;
    width: 46px;
    margin-bottom:0.5em;
}

nav li img {
   width: 40px;
   height: 40px;
   color: var(--primary);
}

h1 { 
    font-family: SplineSansMono;
    font-weight: 100;
    font-size: 19.5pt;
    line-height: 21pt;
    margin-top: 2em;
    margin-bottom: 2em;
    color: var(--background-color);
}

h2 {
    color: var(--dark);
    font-weight: 100;
    font-size: 19.5pt;
    line-height: 21pt;
    width: 100%;
}
@media (min-width: 992px) {
h2 {
    width: 50%;
}
}

div.projects {
    background-color: var(--dark);
    border-radius: 7pt;
    padding: 5pt;
    padding-right: 80px;
    width: min-content;
    margin-top: 1em;
    margin-bottom: 1em;;
}

h3 { 
    font-weight: 100;
    color: var(--background-color);
    font-size: 15pt;
    line-height: 18pt;
    margin: 0;
}

h4 { 
    font-weight: 400;
    font-family: AvenirBlack;
    color: var(--primary);
    font-size: 14pt;
    line-height: 17pt;
    margin-bottom: 0px;
}

h5 { 
    color: var(--primary);
    font-weight: 100;
    font-size: 13pt;
    line-height: 14pt;
}

div.project {
    padding-bottom: 2em;
}

div.project ul {
    margin-left: -18px;
}

div.project li {
    list-style-type: none;
    position: relative;
}

div.project img {
    width: 100%;
}

div.project li::before {
    content: '◤';
    position: absolute;
    left: -1.5em;
    font-size: 0.6em;
    color: var(--grey);
}

.triangle1 {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 130px 250px 0 0;
    border-color: var(--primary) transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
 }

 
.triangle2 {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 265px 500px 0 0;
    border-color: var(--secondary) transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -11;
 }

.triangle3 {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 130px 250px;
    border-color: transparent transparent var(--primary) transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -10;
 }

 
.triangle4 {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 265px 500px;
    border-color: transparent transparent var(--secondary) transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -11;
 }