@charset "utf-8";
/* CSS Document */

/*fonts*/
@import url("https://fonts.googleapis.com/css?family=Dosis|Fjord+One");
/*
font-family: 'Fjord One', serif;
font-family: 'Dosis', sans-serif;
*/

/*RESET*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
/*end reset*/

/*tester styles for space floaters*/
ol.space{
  list-style-type: none;
  list-style-position: inside;
  position:relative;
  overflow:hidden;
}
ol.space li.floater{
  position:absolute;

  transition-property: all;
  transition-timing-function: cubic-bezier(.25,0,.15,1);
  transition-duration: 5s;

  background-color: red;
  height:50px;
  width:50px;
  
}
/*End tester styles for space floaters*/


/*begin main styles*/
body {
  font-family: "Dosis", Arial, sans-serif;
  background-color: #2F1418;
  color: #eee;
  transition: background-color 0.25s ease-out;
}
h1,h3,p {
  font-family: "Fjord One", serif;
  text-wrap:balance;
}
body.light {
  background-color: #eee;
  color: #2F1418;
}

/*lightbulb styles*/
.ColorToggle {
  position: fixed;
  bottom: 15px;
  right: 15px;
  height: 40px;
  width: 40px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-border: 2px solid #eee;
  -webkit-border: 2px solid #eee;
  border: 3px solid #eee;
  background-color: #2F1418;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease-out;
}
.light .ColorToggle {
  background-color: #eee;

  -moz-border: 2px solid #2F1418;
  -webkit-border: 2px solid #2F1418;
  border: 3px solid #2F1418;
}
.ColorToggle:hover {
  background-color: #eee;
}
.light .ColorToggle:hover {
  background-color: #2F1418;
}
.ColorToggle .CT-table {
  display: table;
  width: 100%;
  height: 100%;
}
.ColorToggle .CT-tableCell {
  display: table-cell;
  width: 100%;
  text-align: center;
  vertical-align: middle;
}
.ColorToggle i {
  font-size: 25px;
  color: #eee;
  transition: color 0.25s ease-out;
}
.ColorToggle:hover i {
  color: #2F1418;
}
.light .ColorToggle i {
  font-size: 25px;
  color: #2F1418;
  transition: color 0.25s ease-out;
}
.light .ColorToggle:hover i {
  color: #eee;
}

/*Start nav styles*/
nav.hidden {
  display: none;
}
nav.opaque {
  opacity: 0;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 9, 11, 0.35);
  padding: 0;
  z-index: 5;
  opacity: 1;
  transition: all 0.5s ease-out;
  backdrop-filter: blur(7px);
}
.light nav {
  background-color: rgba(238, 238, 238, 0.35);
}
nav ul {
  margin: 75px 0 0 50px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: left 0.25s ease-out, opacity 0.25s ease-out;
}
nav ul li {
  display: block;
}
nav ul li p {
  display: inline-block;
  color: #eee;
  font-size: 1.4em;
  line-height: 1.7em;
  padding-bottom: 10px;
  cursor: pointer;
  transition:border-bottom ease-out 0.25s;
}
.light nav ul li p {
  color: #2F1418;
}
nav ul li p a {
  color: #eee;
  text-decoration: none;
  line-height: 115%;
  display: block;
}
.light nav ul li p a {
  color: #2F1418;
}
.menu {
  position: fixed;
  height: 40px;
  width: 40px;
  top: 15px;
  left: 15px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-border: 2px solid #eee;
  -webkit-border: 2px solid #eee;
  border: 3px solid #eee;
  background-color: #2F1418;
  cursor: pointer;
  z-index: 10;
  transition: all ease-out 0.25s;
}
.light .menu {
  -moz-border: 2px solid #2F1418;
  -webkit-border: 2px solid #2F1418;
  border: 3px solid #2F1418;
  background-color: #eee;
}
.menu:hover {
  background-color: #eee;
}
.light .menu:hover {
  background-color: #2F1418;
}
.menu span {
  width: 100%;
  height: 100%;
  display: block;
}
.menu span:before,
.menu span:after {
  width: 69%;
  content: "";
  height: 3px;
  border-radius: 33px;
  background-color: #eee;
  display: block;
  position: relative;
  transition: all ease-out 0.25s;
}
.light .menu span:before,
.light .menu span:after {
  background-color: #2F1418;
}
.menu span:before {
  transform: rotate(0deg);
  top: 12px;
  left: 7px;
  width: 60%;
}
.menu.close span:before {
  transform: rotate(45deg);
  top: 16px;
  left: 16%;
  width: 69%;
}
.menu:hover span:before {
  background-color: #2F1418;
}
.light .menu:hover span:before {
  background-color: #eee;
}
.menu span:after {
  transform: rotate(0deg);
  top: 17px;
  left: 7px;
  width: 40%;
}
.menu.close span:after {
  transform: rotate(-45deg);
  top: 13px;
  left: 16%;
  width: 69%;
}
.menu:hover span:after {
  background-color: #2F1418;
}
.light .menu:hover span:after {
  background-color: #eee;
}
nav.closed ul {
  left: -15px;
  opacity: 0;
}

/*start page styles*/
.Page {
  opacity: 0;
  display: none;
  top: 0;
  left: 0px;
  min-height: 100vh;
  justify-content: end;
  align-items: center;
  overflow-y: auto;
  transition: opacity ease-out 0.3s, display ease-out 0.3s;
  min-width:55%;
  max-width:1000px
}
.Page.active {
  display: flex;
}
.Page.active.show {
  opacity: 1;
}
.Page.active.hide {
  opacity: 0;
}
.PageContent {
  width:100%;
  margin: 75px 1.25em 55px;
}
.PageContent h1 {
  font-size: 2.25em;
  line-height: 1.2em;
  padding-bottom: 15px;
  letter-spacing: 2px;
}
.PageContent p {
  font-size: 1.2em;
  line-height: 1.5em;
  padding-bottom: 1.5em;
  color: #eee;
  transition: color ease-out 0.25s;
  text-wrap: wrap;
}
.PageContent p.notes {
  font-style: italic;
  text-decoration: underline;
  font-size: 1em;
  padding-bottom: 0;
  margin-top: 1em;
}
.ProfileIcon img {
  display: block;
  max-height: 200px;
  border-radius: 100%;
}
.light .PageContent p {
  color: #2F1418;
}


.PageContent h3 {
  font-size: 1.5em;
  line-height: 1.4em;
  padding-bottom: 1em;
  color: #eee;
  transition: color ease-out 0.25s;
  letter-spacing: 1px;
}
.light .PageContent h3 {color: #2F1418;}

.PageContent p b {
  font-weight: 900;
  letter-spacing: 1.5px;
  font-size: 1.1em;
}
.PageContent p.beforeBullets {
  padding-bottom: 5px;
  font-weight: 900;
  letter-spacing: 1.25px;
}
ul.TheBullets {
  list-style-type: disc;
  margin-left: 20px;
  list-style-position: outside;
}
.PageContent li p {
  padding-bottom: 5px;
}
.ViewRow {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9em 1.3em;
}
.ViewBTN p {
  padding-bottom: 0;
  font-size: 1.25em;
}
.ViewBTN p a {
  text-decoration: none;
  color: #eee;
  padding: 7px 17px;
  display: block;
  border: 2px solid #eee;
  transition: all ease-out 0.133s;
}
.light .ViewBTN p a {
  color: #2F1418;
  border: 2px solid #2F1418;
}
.ViewBTN p a:hover {
  background-color: #eee;
  color: #2F1418;
  border: 2px solid transparent;
}
.light .ViewBTN p a:hover {
  background-color: #2F1418;
  color: #eee;
  border: 2px solid transparent;
}
.ProjectLogo img {
  display: block;
  max-width: 100%;
  max-height: 150px;
  margin: 25px 0;
  padding: 2px;
}
.ProjectLogo.needBG img {
  background-color: #eee;
}

/*BEGIN MEDIA QUERIES*/

@media (min-width: 768px) {
  .PageContent h1 {
    text-align: left;
  }

  .PageContent {
    margin: 125px 1.25em 55px;
  }

  .menu {
    display: none;
  }
  nav.opaque {
      opacity: 1;
  }
  nav.hidden {
      display: flex;
  }
  nav {
    opacity: 1;
    position: fixed;
    background-color: rgba(24, 9, 11, 0);
    height: auto;
    backdrop-filter: none;
  }
  nav.closed ul {
      left: 0;
      opacity: 1;
  }
  nav ul {
    padding: 1em 1.25em 0;
    margin: 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: .75em 1.5em;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    background-color: rgba(24, 9, 11, 0.35);
    backdrop-filter: blur(7px);      
    width:100%;
  }
  .light nav ul {
    background-color: rgba(238, 238, 238, 0.35);    
  }
  nav ul li p {
      padding-bottom: 0;
  }
  nav ul li p a {
      font-size: 1em;
      line-height: 1.5em;
  }
  nav ul li p{
    display:inline-block;
    padding: 0 .3em 2px 0.3em;
    margin-bottom: 7px;
    border-bottom: 2px solid transparent;
    line-height: 1.5em;
    font-size:1.3em;
  }
  p.CurPage {
    border-bottom: 2px solid #eee;
  }
  .light p.CurPage {
    border-bottom: 2px solid #2F1418;
  }
}

@media (min-width: 1280px) {
  
  nav {
    opacity: 1;
    display: flex;
    width: auto;
    height: auto;
    background-color: transparent;
    position: relative;
    transition:all 0.5s ease-out, background-color 0s ease-out;

      align-self: flex-start;
      position: sticky;
  }
  .light nav {
      background-color: rgba(238, 238, 238, 0.0);
    }

  nav.closed ul {
    left: 0;
    opacity: 1;
  }
  nav ul {
    left: 0;
    opacity: 1;
    border-right: 2px solid #eee;    
    background-color: rgba(24, 9, 11, 0);
    padding: 2.3em .75em 2.3em .75em;
    margin: 50px 0 50px 0.5em;
    display:flex;
    flex-direction: column;
    gap:0 0;
    position: relative;
    align-items: flex-end;
  }
  .light nav ul{
    border-right: 2px solid #2F1418;
    background-color: rgba(24, 9, 11, 0);
  }
  nav ul li p{
    display:inline-block;
    padding: 0 .45em 2px .45em;
    margin-bottom: 7px;
    line-height: 1.7em;
  }
  
  .menu {
    display: none;
  }
  body {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .PageContent {
    margin: 50px 1em ;
  }
  .Page{backdrop-filter: blur(7px);}
}

@media (min-height: 600px) and (min-width: 1280px) {
  body {
    align-items: center;
  }
  .PageContent {
    margin: 75px 1em;
  }
}


@media (min-width: 1440px) {
    .PageContent {
        margin: 50px 3.5em;
    }

    nav ul {
        padding: 2.3em 3.25em;
    }
}