* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin-top: 20vh;
}

body {
  background-color: #318c87;
}
body h1 {
  color: whitesmoke;
  font-size: 2.5rem;
  padding: 1rem;
}
body p {
  color: whitesmoke;
  font-size: 1.25rem;
  padding: 5px;
}
body div.userInput {
  display: flex;
  gap: 7px;
}
body div.userInput #input {
  width: 300px;
  height: 30px;
  border: none;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 10px;
}
body div.userInput #addBtn {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 5px;
  color: #1c607b;
  font-size: 20px;
}

#list li {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 337px;
  min-height: 30px;
  margin: 5px;
  background-color: #62c4bf;
  color: whitesmoke;
  padding: 7px;
  border-radius: 5px;
}
#list li .todo-checkbox {
  width: 20px;
  height: 20px;
}
#list li label {
  flex: 1;
  text-align: left;
  padding: 0 10px;
}
#list li .del-btn {
  width: 30px;
  height: 30px;
  border: none;
  color: whitesmoke;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: transparent;
}

.completed label {
  text-decoration: line-through;
}

.del-btn:hover,
#addBtn:hover {
  cursor: pointer;
}

@keyframes scaleUp {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes scaleDown {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@media screen and (max-width: 340px) {
  .container {
    margin-top: 10vh;
  }
  .container h1 {
    font-size: 2rem;
  }
  .container p {
    font-size: 1rem;
  }
  div.userInput {
    width: 100vw;
    box-sizing: border-box;
    padding: 0 10px;
  }
  #list li {
    width: 100vw;
  }
}/*# sourceMappingURL=style.css.map */