html.light {
  --background-button: url("../images/icon-moon.svg");
  --background-color: hsl(0, 0%, 98%);
  --card-color: hsl(0, 0%, 100%);
  --border-color: hsl(233, 11%, 84%);
  --text-color:  hsl(235, 19%, 35%);
  --bottom-text-color: hsl(236, 9%, 61%);
  --bottom-hover-color: hsl(235, 19%, 35%);
}

html.dark {
  --background-button: url("../images/icon-sun.svg");
  --background-color: hsl(235, 21%, 11%);
  --card-color: hsl(235, 24%, 19%);
  --border-color: hsl(233, 14%, 35%);
  --text-color: hsl(234, 39%, 85%);
  --bottom-text-color: hsl(233, 14%, 35%);
  --bottom-hover-color: hsl(234, 39%, 85%);
}

* {
  -webkit-transition: all .15s ease;
  transition: all .15s ease;
}

body {
  margin: 0;
  background-repeat: no-repeat;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: var(--background-color);
  font-family: 'Josefin Sans', sans-serif;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container .background {
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  z-index: -1;
  min-width: var(--min-width);
  width: 100%;
  height: 33%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container button {
  background-color: transparent;
  border: none;
}

.container button:focus {
  outline: none;
}

.container .clickable {
  cursor: pointer;
}

.container .theme-switcher {
  background-image: var(--background-button);
  background-repeat: no-repeat;
  margin-top: 1.5em;
  padding: 1em;
}

.container .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 800px;
  padding: 1em;
}

.container .top h1 {
  letter-spacing: 0.5em;
  color: white;
}

.container .card {
  position: relative;
  top: 70px;
}

.container .card .enter-card {
  margin: auto;
  border-radius: 8px;
  width: 800px;
  background-color: var(--card-color);
  margin-bottom: 1em;
}

.container .card .enter-card .todo-input {
  margin-left: 1.5em;
  margin-top: 1em;
  position: relative;
  width: 2em;
  height: 2em;
  color: #363839;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  cursor: pointer;
  -webkit-transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
  transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
  top: 10px;
  cursor: default;
}

.container .card .enter-card .todo-input::before {
  position: absolute;
  content: '';
  display: block;
  top: 2px;
  left: 7px;
  width: 8px;
  height: 14px;
  border-style: solid;
  border-color: #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}

.container .card .enter-card .todo-input:checked {
  color: #fff;
  border-color: var(--border-color);
  background-image: -webkit-gradient(linear, left top, right bottom, from(#57ddff), to(#c058f3));
  background-image: linear-gradient(to bottom right, #57ddff, #c058f3);
}

.container .card .enter-card .todo-input:checked::before {
  opacity: 1;
}

.container .card .enter-card .todo-input:checked ~ label::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.container .card .enter-card .create-todo {
  border: none;
  background-color: var(--card-color);
  color: var(--text-color);
  width: 85%;
  padding: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1.5em;
}

.container .card .enter-card .create-todo::-webkit-input-placeholder {
  color: var(--bottom-text-color);
}

.container .card .enter-card .create-todo:-ms-input-placeholder {
  color: var(--bottom-text-color);
}

.container .card .enter-card .create-todo::-ms-input-placeholder {
  color: var(--bottom-text-color);
}

.container .card .enter-card .create-todo::placeholder {
  color: var(--bottom-text-color);
}

.container .card .enter-card .create-todo:focus {
  outline: none;
}

.container .card .enter-card #arrow {
  background-color: var(--card-color);
  height: 20px;
  border-radius: 4px;
}

.container .card .main-card {
  margin: auto;
  border-radius: 8px;
  width: 800px;
  background-color: var(--card-color);
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.container .card .main-card .todo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 1px solid var(--border-color);
  padding: 1em;
}

.container .card .main-card .todo .todo-checkbox {
  position: relative;
  width: 2em;
  height: 2em;
  color: #363839;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  cursor: pointer;
  -webkit-transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
  transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}

.container .card .main-card .todo .todo-checkbox::before {
  position: absolute;
  content: '';
  display: block;
  top: 2px;
  left: 7px;
  width: 8px;
  height: 14px;
  border-style: solid;
  border-color: #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}

.container .card .main-card .todo .todo-checkbox:checked {
  color: #fff;
  border-color: var(--border-color);
  background-image: -webkit-gradient(linear, left top, right bottom, from(#57ddff), to(#c058f3));
  background-image: linear-gradient(to bottom right, #57ddff, #c058f3);
}

.container .card .main-card .todo .todo-checkbox:checked::before {
  opacity: 1;
}

.container .card .main-card .todo .todo-checkbox:checked ~ label::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.container .card .main-card .todo .todo-text {
  margin-left: 0.5em;
  color: var(--text-color);
  margin-top: 6px;
  position: relative;
  cursor: pointer;
  font-size: 1.5em;
  padding: 0 0.25em 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.container .card .main-card .todo .todo-text::before {
  position: absolute;
  content: attr(data-content);
  color: #9394a5;
  -webkit-clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  -webkit-text-decoration-color: var(--bottom-text-color);
          text-decoration-color: var(--bottom-text-color);
  -webkit-transition: -webkit-clip-path 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-clip-path 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: clip-path 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: clip-path 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-clip-path 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.container .card .main-card .todo .close-todo {
  margin-left: auto;
  color: var(--bottom-text-color);
}

.container .card .main-card .bottom {
  color: var(--bottom-text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em;
}

.container .card .main-card .bottom .status-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 1em;
}

.container .card .main-card .bottom .status-category .status {
  margin: 0 1em;
  text-decoration: none;
  color: var(--bottom-text-color);
}

.container .card .main-card .bottom .status-category .status:hover {
  color: var(--bottom-hover-color);
}

.container .card .main-card .bottom .status-category .status:target {
  color: var(--bottom-hover-color);
}

.container .card .main-card .bottom .status-category .status:focus {
  outline: none;
}

@media screen and (max-width: 800px) {
  .container .top {
    width: 480px;
  }
  .container .card {
    width: 500px;
  }
  .container .card .enter-card {
    width: 500px;
  }
  .container .card .enter-card .create-todo {
    width: 385px;
  }
  .container .card .main-card {
    width: 500px;
  }
}

@media screen and (max-width: 500px) {
  .container .top {
    margin: auto;
    width: 300px;
  }
  .container .card {
    width: 400px;
  }
  .container .card .enter-card {
    width: 300px;
  }
  .container .card .enter-card .create-todo {
    width: 185px;
  }
  .container .card .main-card {
    width: 300px;
  }
  .container .card .main-card .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container .card .main-card .bottom .status-category {
    margin: 1em 0;
  }
}
/*# sourceMappingURL=style.css.map */