/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: sans-serif;
  font-size: x-large;
  margin: 0;
}
h5 {
  margin: 0;
}
#container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: auto 1fr;
  height: 100vh;
}
nav {
  grid-column: 1 / 3; 
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(189, 189, 243);
}
nav li {
  float: left;
}
nav li a {
  font-family: 'Orbitron', sans-serif;
  display: block;
  color: rgb(40, 40, 141);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
nav li a:hover {
  background-color: rgb(170, 170, 230);
  color:rgb(30, 30, 222);
}
.clear-localstorage {
  background-color: lightblue;
  height: 40px;
  box-shadow: gray 4px 5px;
  margin-top: 15px;
  margin-left: 20px;
  outline: rgb(244, 244, 244) outset 3px;
}
#left-menu > *, #jumbotron > * {
  margin: 15px;
}
#left-menu {
  grid-column: 1 / 2;
  background-color: rgb(245, 245, 237);
  overflow: auto;
}
#jumbotron {
  grid-column: 2 / 3;
  background-color: rgb(230, 248, 243);
  overflow: auto;
}
#checkBox:hover {
  cursor: pointer;
}
.hide-details > .task-desc-span,
.hide-details > .task-priority-span,
.hide-details > .task-due-date-span {
  display: none;
}
.project-hr {
  margin-top: 1px;
  color: lightgray;
}
.show-details > .task-desc-span,
.show-details > .task-priority-span,
.show-details > .task-due-date-span {
  display: inline;
}
.logo * {
  font-size: xx-large;
  padding-top:10px;
}
li:not(.logo) > a {
  padding-top: 18px;
  font-family: 'Cinzel';
  height: 72px;
}
.task-ul, .project-div {
  list-style: none;
  margin-left: 0;
}
.task-ul > li {
  padding-left: 10px;
}
.project-div {
  background-color: beige;
  border: solid 1px cornflowerblue;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 10px;
}
.add-task-label {
  color: gray;
  margin-left: 10px;
}
.add-input-li {
  display: none;
}
.checkbox-span:hover {
  cursor: pointer;
}
.task-span  , .task-list-description {
  margin-left: 10px;
}
#add-project-div > input {
  margin-left: 10px;
}
.task-desc-span,
.task-priority-span,
.task-due-date-span {
  font-size: medium;
  color: rgb(40, 40, 40);
}

.task-description-li.complete > .task-title-span,
.task-description-li.complete > .task-desc-span {
  text-decoration: line-through;
}

.project {
  padding: 120px;
}
.project-link {
  margin: 10px;
  padding: 5px;
  border-radius: 5px;
  background: rgb(234, 156, 182);
  border: solid 1px gray;
}
.project-form-div > * {
  margin-left: 5px;
}
.project-link.display {
  background: rgb(166, 236, 166);
}
.priority-one,
.priority-one > * {
  color: red;
}
.priority-two,
.priority-two > * {
  color: orange;
}
.priority-three,
.priority-three > * {
  color: green;
}
.task-form-li > * {
  border-radius: 5px;
  /* height: 40px; */
}
.task-form-div {
  margin-left: 25px;
  padding: 10px;
  background-color: mistyrose;
  border: solid 1px cornflowerblue;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  grid-template-rows: auto 20px auto 20px auto 20px auto;
  overflow: hidden;
  width: 80%;
  grid-gap: 5px;
}
.form-heading {
  grid-column: 1 / 5;
}
.task-form-title-input-label {
  font-size: 15px;
  grid-column: 1 / 5;
}
.task-form-description-input-label {
  font-size: 15px;
  grid-column: 1 / 5;
}
.task-form-title-input {
  grid-column: 1 / 5;
}
.task-form-description-input {
  grid-column: 1 / 5;
}
.select-task-priority-label {
  font-size: 15px;
  grid-column: 1 / 2;
}
.select-task-priority {
  grid-column: 1 / 2;
}
.input-due-date-label {
  grid-row: 6;
  font-size: 15px;
  grid-column: 2 / 3;
}
.input-date {
  grid-column: 2 / 3;
}
.project-name {
  font-weight: bold;
}
button {
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
}
button:hover {
  cursor: pointer;
}
.add-task-button-span,
.add-project-button-span {
  margin-right: 10px;
}
.add-task-button-span > svg,
.add-project-button-span > svg {
  color: rgb(111, 111, 222);
}
.add-task-button-span > svg:hover,
.add-project-button-span > svg:hover {
  color: black;
  background-color: rgb(111, 111, 222);
  border-radius: 100%;
  cursor: pointer;
}
#add-new-project-div.project-div {
  background-color: rgb(250,199,177);
}
.submit-button, .cancel-button {
  background-color: lightgray;
  border-radius: 5px;
}
.project-form-div {
  display: grid;
}
.project-form-title-input-label {
  grid-column: 1 / 2;
  font-size: 15px;
}
.project-form-title-input {
  grid-column: 1 / 2;
}
