:root {
  /*Colours*/
  --bg-black: #0e0f0f;
  --black: #090909;
  --white: #ccc;
  --bright: #E1DDD1;
  --v-red: #e63926;
  --blue: #09A3F6;
  --orange: #f16312;
  --yellow: #fae100;
  --green: #38ff53;
  --violet: #c9098c;
  --grey: #505353;
  /*For Elements*/
  --borders: #E1DDD1;
  --scroll-block: #505353;
  --scroll-bg: #E1DDD1;
  /*custom per page*/
  --bg-image-url: url(/images/main_backgroundNoise.png);
  --accent: #fae100;
  --accent-mid: #FFEF5C;
  --accent-light: #FFF9C2;
}
body {
  width: 90vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  border: 0em;
  margin: 0em;
  padding: 0em;
  background-color: var(--black);
  background-image : var(--bg-image-url);
  background-repeat: repeat;
  color: var(--white);
  font-family: monospace;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  font-size: 14px;
}
section h3 {
  padding: 0em;
  margin: 0em;
}
header {
  display: flex;
  max-width: 100vw;
  padding: 0em;
  margin-top: 2em;
  justify-content: center;
  border: none;
}
#headerImg {
  width: 1000px;
  max-width: 100%;
  height: auto;
  border: none;
}
.navBar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.navBar li {
  font-size: 16px;
}
.horizontalNav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: none;
  display: flex;
  justify-content: center;
}
.horizontalNav li {
  margin: 0.2em 0.3em;
}
.horizontalNav li a {
  display: block;
  color: var(--accent);
  background-color: var(--black);
  padding: 0.5em 0.5em;
  text-decoration: none;
  border: 2px solid var(--borders);
}
.horizontalNav li a:hover {
  background-color: var(--bg-black);
  font-weight: bolder;
}
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1;
}
.dropdown-content a {
  color: var(--accent);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

#projectsA:hover, .dropdown:hover #projectsA {
  background-color: var(--bg-black);
}

main {
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}
#flexContainer { 
  display: flex;
  margin-left: auto;
  margin-right: auto;
  flex-direction: row;
  justify-content: flex-start;
  width: 1200px;
  max-width: 90vw;
  flex-wrap: wrap;
  align-items: flex-start;
}
aside {
  border: 2px solid var(--borders);
  margin: 0.5em;
  padding: 0.5em;
  background-color: var(--black);
  overflow-wrap: break-word;
}
#asidesContainer {
  height: fit-content;
  width: fit-content;
}
section {
  border: 2px solid var(--borders);
  margin: 0.5em;
  padding: 0.5em 1em;
  background-color: var(--black);
}

/*FOOTER*/
footer {
  display: block;
  align-self: center;
  width: 1000px;
  max-width: 100%;
  background-color: var(--bg-black);
  padding: 1em;
  margin: 1em;
  border: 2px solid var(--borders);
}
/*BREADCRUMBS*/
nav.breadcrumbs {
  border: 2px solid var(--borders);
  background-color: var(--black);
  margin: 0.5em;
  padding: 0.2em;
  height: fit-content;
}
.crumbs {
  padding: 8px 16px;
  margin: 0px;
}
.crumb {
  display: inline;
}
.crumb + .crumb::before {
  content: ">";
  padding: 0px 0.5em;
}
.crumb a {
  color: var(--accent);
  text-decoration: none;
}
/*GENERAL*/
a {
  color: var(--accent);
}
.imageB {
  background: none;
  color: none;
  border: none;
}
details {
  text-align: center;
}
details summary {
  text-align: center;
  font-size: 16px;
  color: var(--white);
}
details:open summary {
  padding-bottom: 0.3em;
  border-bottom: 2px solid var(--borders);
  margin-bottom: 0.3em;
}
details:hover {
  cursor: pointer;
}
/*PROJECTS*/
.banner {
  width: 600px;
  max-width: 100%;
  height: auto;
  border: none;
}
.marquee {
  width: inherit;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  overflow: hidden;
  background: none;
  white-space: nowrap;
  margin-bottom: none;
  margin-top: 0.5em;
}
.marquee--inner {
  display: block;
  position: absolute;
  animation: marquee 10s linear infinite;
  margin: none;
}
.marquee > img {
  float: left;
  width: 50%;
  overflow: hidden;
}
@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
/*VESSEL GAME TITLE*/
.menuBar span {
  display: block;
  height: 30px;
  margin: 0px;
  align-self: center;
  justify-self: center;
  justify-content: center;
  align-content: center;
}
.titleLine > img {
  height: 30px;
  width: 30px;
  display: inline;
  margin: 0px;

}
.titleLine {
  display: block;
  margin: 0px;
  padding: 5px;

}
.titleText {
  display: inline;
  font-family: 'Jacquard 12', 'Times New Roman', Times, serif;
  color: var(--white);
  font-weight: 300;
  font-size: 40px;
  margin: 0px;
  margin-right: 20px;
  justify-self: center;
}
strong {
  font-weight: bolder;
}
.note {
  font-size: smaller;
}

/*TOC*/
#TOcontentsList {
  text-decoration: none;
  text-align: left;
}
li {
  margin: 0.1em;
}
li.h1 {
  margin-left: 1.1em;
  text-indent: -1em;
}
li.h2 {
  margin-left: 2.1em;
  text-indent: -1em;
}
li.h3 {
  margin-left: 3.1em;
  text-indent: -1em;
}
li.h4 {
  margin-left: 4.1em;
  text-indent: -1em;
}
li.h5 {
  margin-left: 5.1em;
  text-indent: -1em;
}
li.h6 {
  margin-left: 6.1em;
  text-indent: -1em;
}
button {
  font-family: monospace; 
  background-color: var(--bg-black);
  border: 1px solid var(--accent);
  color: var(--accent);
}
button:hover {
  cursor: pointer;
}
.inline {
  display: inline;
}
/*TO-DO LIST*/
aside h1 {
  margin: 0em;
  font-size: 18px;
}
#toDoUl {
  margin: 0.5em;
  list-style-type: none;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
#toDoUl li {
  padding-left: 1em;
  text-indent: -1em;
}
#toDoUl li.unchecked::before {
    margin: 0;
  padding: 0;
  text-indent: 0;
  display: inline-block;
  content: '◻';
  padding-right: 0.5em;
}
#toDoUl li.checked::before {
  margin: 0;
  padding: 0;
  text-indent: 0;
  display: inline-block;
  content: '☑';
  color: var(--grey);
  padding-right: 0.5em;
}
#toDoUl li.checked {
  text-decoration:line-through;
  color: var(--grey);
}
li.toDoLi.checked span.date {
  margin: 0;
  padding: 0;
  text-indent: 0;
  margin-left: 0.2em;
  display: inline-block;
  text-decoration:none;
  color: var(--grey);
}
section img.sideImage {
  width: 200px;
  max-width:40%;
  height: auto;
  float:right;
  margin:0.3em;
}
/*Updates Log*/
.updatesContainer {
  border: 2px solid var(--borders);
  width: 100%;
  min-width: 0em;
  max-height: 10em;
  overflow-y: scroll;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  margin-bottom: 0.5em;
}
.updatesContainer.projectUpdates {
  max-height: 20em;
}
.updatesContainer.projectUpdates details {
  text-align: left;
}
.updatesContainer.projectUpdates details summary {
  margin-left: 0.5em;
  text-align: left;
  font-size: 1.1em;
}
ul.updatesList {
  list-style: none;
  padding: 0.2em;
  margin: 0.2em;
  display: flex;
  flex-direction: column;
}
.updatesList li.update {
  margin: 0.5em 0em;
}
li.update span.date {
  margin-right: 0.5em;
  color: var(--accent);
}
/*Favourites List*/
ul.favList {
  padding: 0em;
  padding-left: 1em;
  margin-top: 0.5em;
}
ul.favList.movies li {
  list-style-type: "\1F3AC";
  padding-left: 0.2em;
}
ul.favList.tv li {
  list-style-type: "\1F4FA";
  padding-left: 0.2em;
}
ul.favList.games li {
  list-style-type: "\1F3AE";
  padding-left: 0.2em;
}
ul.favList.bands li {
  list-style-type: "\1F3A4";
  padding-left: 0.2em;
}
ul.favList.albums li {
  list-style-type: "\1F4BF";
  padding-left: 0.2em;
}
/*GUESTBOOK*/
iframe {
  margin: 0em;
  padding: 0em;
  width: 100%;
  height: 40em;
  scrollbar-width: thin;
}
 /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  #flexContainer {
    flex-direction: column;
    justify-content: center;
    padding: 0em;
    width: 98vw;
    min-width: 0em;
    margin: 0em;
  }
  #asidesContainer {
    width: 100%;
    min-width: 1em;
  }
  #pageContent {
    width: 100%;
    min-width: 1em;
  }
  .desktopOnly {
    display: none;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  #flexContainer {
    flex-direction: column;
    justify-content: center;
    padding: 0em;
    width: 85vw;
    min-width: 0em;
  }
  #asidesContainer {
    width: 100%;
    min-width: 1em;
  }
  #pageContent {
    width: 100%;
    min-width: 1em;
  }
  .desktopOnly {
    display: none;
  }
}
/*var width = document.getElementById('foo').offsetWidth;*/
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  #flexContainer {
    display: flex;
    flex-direction: row;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }
  #asidesContainer {
    width: 25%;
    min-width: 1em;
  }
  #pageContent {
    width: 70%;
    min-width: 1em;
  }
  .desktopOnly {
    display: block;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  #flexContainer {
    width: 90vw;
  }
  #asidesContainer {
    width: 20%;
    min-width: 1em;
  }
  #pageContent {
    width: 75%;
    min-width: 1em;
  }
  .desktopOnly {
    display: block;
  }
}