@media (max-width: 850px) {
  .todo-wrapper {
    padding: 10px;
  }

  .todo {
    width: 550px;
    padding: 20px;
  }

  .tasks-column {
    flex-direction: column;
    align-items: center;
  }

  .tasks-left,
  .tasks-right {
    max-height: 150px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .task {
    width: 500px;
  }

  .todo-title {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

  .todo-title h2 {
    font-size: 24px;
    padding-right: 0;
    margin-bottom: 10px;
  }

  .title-text {
    margin-bottom: 25px;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
  }

  .title-text span {
    color: #64ffda;
  }
}

@media (max-width: 600px) {
  .todo-wrapper {
    padding: 0;
  }

  .todo {
    width: 345px;
    padding: 20px;
  }

  .task {
    width: 300px;
  }
}

@media (max-height: 790px) {
  .todo {
    max-height: 650px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

@media (max-height: 690px) {
  .todo {
    max-height: 600px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
