:root {
  --primaryColor: #771af0;
  --secondaryColor: #e4c8fc;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: var(--primaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  padding: none;
  margin: 0;
}

#content {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 5fr;
  grid-template-rows: 1fr 7fr;
  border-radius: 40px;
}

#header {
  grid-area: 1/1/2/3;
  background-color: var(--primaryColor);
  font-family: "Archivo Black", sans-serif;
  font-size: 60px;
  color: #fff;
  padding-left: 20px;
  padding-top: 10px;
}

#menu {
  grid-area: 2/1/3/2;
  background-color: #e0e0e0;
  padding-top: 10px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.addBtn {
  margin: 0 auto;
  outline: #000 solid 1px;
  padding: 10px 20px;
  background-color: var(--primaryColor);
  color: #fff;
  box-shadow: #0000004d 0px 5px 10px 2px;
  cursor: pointer;
}

.menuList,
.projectsList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  font-family: "Archivo Black", sans-serif;
  width: 100px;
}

.menuList {
  font-size: 24px;
  font-weight: 300;
}

.menuItem,
.projectItem {
  cursor: pointer;
}

#menuBtns {
  display: flex;
  gap: 20px;
}

.projectsList {
  font-size: 20px;
  font-weight: 200;
  padding-bottom: 10px;
}

#createdTasks {
  display: grid;
  min-height: 100%;
  grid-auto-rows: max-content;
  grid-template-columns: 1fr;
  gap: 20px;
}

#list {
  grid-area: 2/2/3/3;
  background-color: #f1f1f1;
  border-left: #000 solid 1px;
  padding-left: 20px;
  padding-top: 5px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.mainListContent {
  flex-direction: column;
  gap: 20px;
}

.listHeading {
  height: 50px;
  margin-bottom: 25px;
}

.taskLabels {
  width: 90%;
  height: 25px;
  display: grid;
  grid-template-columns: 0.5fr 1fr 2.5fr 1fr 1fr;
  gap: 25px;
  align-items: center;
  margin: 0 auto;
  padding-left: 10px;
  font-weight: 700;
}

.task {
  width: 90%;
  height: 50px;
  display: grid;
  grid-template-columns: 0.5fr 1fr 2.5fr 1fr 1fr;
  gap: 25px;
  align-items: center;
  outline: #000 solid 1px;
  margin: 0 auto;
  padding-left: 10px;
  background-color: #fff;
}

.High {
  border-left: #e90808 solid 5px;
}

.Medium {
  border-left: #ffe606 solid 5px;
}

.Low {
  border-left: #00ff22 solid 5px;
}

#list h3 {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  padding: 0;
  margin: 0;
}

#addProjectFormContainer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 30vh;
  width: 100%;
  background-color: #fffffff9;
  border-radius: 20px 20px 0 0;
  animation: popup 0.3s linear 0s forwards;
  /* display: flex; */
  /* justify-content: center;
  align-items: center; */
  outline: #000 solid 1px;
}

#addProjectForm {
  height: 100%;
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-left: 20px;
}

#addProjectForm h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 30px;
  padding: 0;
  margin: 0;
}

.inputDiv {
  display: flex;
  flex-direction: column;
}

.inputDiv label {
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
}

#projectTitleInput {
  height: 20px;
}

button {
  border: none;
}

.formBtns {
  display: flex;
  gap: 20px;
}

.formBtn {
  width: 120px;
}

.formDivBtn {
  width: 80px;
  text-align: center;
}

#addTaskFormContainer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 30vh;
  width: 100%;
  background-color: #fffffff9;
  border-radius: 20px 20px 0 0;
  animation: popup 0.3s linear 0s forwards;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  outline: #000 solid 1px;
}

#addTaskForm {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#addTaskForm h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 30px;
  padding: 0;
  margin: 0;
}

.taskFormInputs {
  display: flex;
  justify-content: space-evenly;
}

.taskFormBtns {
  display: flex;
  justify-content: space-evenly;
  width: 400px;
  margin: 0 auto;
}

.inputDiv input,
.inputDiv select {
  height: 20px;
}

.icons {
  display: flex;
  gap: 20px;
}

.hidden {
  display: none;
}

.selected {
  color: var(--primaryColor);
}

.btn {
  background-color: transparent;
  color: #fff;
}

#headingTop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.btmBtns {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 0 auto;
}

@keyframes popup {
  0% {
    height: 0;
  }

  100% {
    height: 30vh;
  }
}
