* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Helvetica;
}

html {
  font-size: 62.5%;
}

body {
  height: 100vh;
  overflow: hidden;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
}

nav {
  background-color: #db4c3f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
}

nav h1 {
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 3rem;
}

nav #hamburger {
  margin-left: 2rem;
  padding: 0.5rem;
  border-radius: 5px;
  font-size: 4rem;
  color: #fff;
}

nav #hamburger:hover {
  background-color: #e3746a;
  cursor: pointer;
}

nav #plussign {
  margin-right: 2rem;
  padding: 0.5rem;
  border-radius: 5px;
  font-size: 4rem;
  color: #fff;
}

nav #plussign:hover {
  background-color: #e3746a;
  cursor: pointer;
}

.sidebar {
  height: 100%;
  width: 35rem;
  background-color: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  position: fixed;
  left: 0;
}

.sidebar .sidebar-header {
  margin-top: 2rem;
}

.sidebar h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.sidebar h3 {
  width: 80%;
  margin: 1rem auto;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.6rem;
  position: relative;
  border-bottom: 1px solid black;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.sidebar h3:hover {
  cursor: pointer;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  color: rgba(0, 0, 0, 0.6);
}

.sidebar h4 {
  width: 80%;
  margin: 1rem auto;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.6rem;
  position: relative;
}

.sidebar i {
  position: absolute;
  font-size: 2rem;
  right: 1rem;
}

.sidebar input {
  margin: 0 auto;
  display: block;
  width: 80%;
}

.sidebar #projectname {
  border: solid 1px grey;
  padding: 1.3rem 0;
  border-radius: 0.5rem;
  outline: none;
  text-indent: 5px;
  font-size: 1.5rem;
}

.sidebar .sidebar-text {
  background: none;
}

.sidebar select {
  width: 80%;
  border: none;
  border-radius: 10px;
  outline: none;
  display: block;
  margin: 0 auto;
  background-color: #fafafa;
  padding: 1rem 0;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-align-last: center;
}

.sidebar-hidden {
  left: -35rem;
}

.todo-adjust {
  margin-left: 0rem;
}

section {
  margin-left: 35rem;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background-color: white;
  overflow-y: auto;
  padding-bottom: 5rem;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: solid 1px black;
  border-radius: 1.5rem;
  background-color: #ededed;
  height: 50rem;
  width: 35rem;
  visibility: hidden;
}

.modal ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
}

.modal h3 {
  font-size: 3rem;
  text-align: center;
  padding: 1rem 0;
}

.modal label {
  font-size: 1.5rem;
  font-weight: bold;
}

.modal input, .modal select {
  width: 100%;
  padding: 1rem;
  margin: 0.5rem 0;
  border: none;
  border-radius: 5px;
  background-color: white;
}

.modal button {
  padding: 1rem 0;
  display: inline-block;
  width: 40rem;
  border: none;
  border-radius: 5px;
  margin-top: 1rem;
}

.modal #addtodo {
  background-color: #4d79ff;
}

.modal #addtodo:hover {
  background-color: #809fff;
}

.modal #closeform {
  background-color: #e60000;
}

.modal #closeform:hover {
  background-color: #ff1a1a;
}

.modal-active {
  visibility: visible;
}

.tododiv {
  max-width: 95rem;
  width: 80%;
  min-height: 16rem;
  margin: 2rem auto;
  padding: 1rem;
  border-radius: 10px;
  background-color: rgba(245, 245, 245, 0.8);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3), 0px 8px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3), 0px 8px 8px rgba(0, 0, 0, 0.3);
}

.tododiv .bold {
  font-weight: bold;
}

.tododiv .tododiv-title {
  text-align: center;
  font-size: 2rem;
}

.tododiv .todo-description {
  font-size: 1.6rem;
}

.tododiv .tododiv-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0.5rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tododiv button {
  padding: 0.5rem 4rem;
  border-radius: 5px;
  border: none;
  font-size: 1.6rem;
}

.tododiv .tododiv-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  visibility: hidden;
}

.tododiv .tododiv-input input {
  border: none;
  border-radius: 5px;
  text-indent: 5px;
  padding: 0 1rem;
  outline: none;
}

.tododiv-input__visible {
  visibility: visible !important;
}

#todoheader {
  font-size: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

#todoheader i {
  font-size: 4rem;
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  cursor: pointer;
}

#todoheader i:hover {
  color: red;
}

#lists {
  overflow-y: auto;
}

@media screen and (max-width: 400px) {
  .tododiv {
    max-width: 400px;
    width: 100%;
    height: 22rem;
  }
  section {
    margin-left: 0;
  }
  .sidebar {
    position: absolute;
    z-index: 1000;
  }
}

@media screen and (max-width: 720px) {
  .tododiv {
    max-width: 700px;
    width: 90%;
    height: 20rem;
  }
  .sidebar {
    position: absolute;
    z-index: 1000;
  }
}
/*# sourceMappingURL=main.css.map */