@font-face {
  font-family: Josefin;
  src: url(/fonts/JosefinSans-VariableFont_wght.ttf);
}
.lightbg {
  background-color: #FAFAFA;
}

.darkbg {
  background-color: #181824;
}

.light {
  background-color: #fff;
  color: #000;
}

.dark {
  color: white;
  background-color: #25283B;
}

li {
  margin-top: -10px;
}
li span {
  position: absolute;
  right: 15px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  background: no-repeat url(/images/icon-cross.svg);
}
li span:hover {
  color: #949494;
}

li::before {
  content: "";
  display: inline-block;
  border: 1px solid #d3d2d2;
  border-radius: 100%;
  min-width: 25px;
  margin-right: 10px;
  min-height: 25px;
  margin-bottom: -7px;
  cursor: pointer;
}

li.checked {
  color: #949494;
  text-decoration: line-through;
}

li.checked::before {
  animation: opacity 500ms;
  background-image: linear-gradient(#4ED4F6, #C058F3);
}

.gone {
  display: none;
}

.block {
  animation: opacity 500ms;
}

@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
* {
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
  font-family: Josefin;
  color: white;
  outline: none;
  border: none;
}

body {
  height: 100dvh;
  display: flex;
  background-color: #FAFAFA;
  justify-content: center;
  align-items: center;
}
body .img {
  width: 100%;
  position: fixed;
  z-index: -1;
  top: 0;
}
body .mobileimg {
  width: 100%;
  position: fixed;
  z-index: -1;
  top: 0;
  display: none;
}

.overlay {
  padding: 3rem;
  width: 45rem;
  height: 55rem;
  z-index: 2;
}
.overlay div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.overlay div h1 {
  letter-spacing: 15px;
  font-size: 45px;
}
.overlay div .lightdark {
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-image: url("/images/icon-sun.svg");
}
.overlay div .darklight {
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-image: url("/images/icon-moon.svg");
}
.overlay div .todoinput {
  margin-top: 3rem;
  border-radius: 5px;
  height: 4rem;
  width: 100%;
  padding: 2rem 4rem 2rem 4rem;
  font-size: 18px;
}

.boxcont .box {
  position: relative;
  overflow-y: auto;
  margin-top: 3rem;
  width: 100%;
  display: inline;
  margin: 3rem 5px 5px 5px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.29);
  height: 35rem;
}

.task {
  padding: 2rem 2rem 1rem 2rem;
  height: max-content;
  width: 100%;
  border-bottom: 2px solid #E6E5E9;
}
.task button {
  background: transparent;
  border: 1px solid #d3d2d2;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  padding: 3px;
}
.task button:hover {
  cursor: pointer;
  border: 1px solid #9c9c9c;
}
.task span {
  font-size: 20px;
  text-align: left;
  margin-left: 20px;
}

.list {
  width: 99%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 0.5rem;
  margin-left: 4px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.29);
  height: 3rem;
}
.list span button {
  background: transparent;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 16px;
}
.list span button:hover {
  cursor: pointer;
  color: #9c9c9c;
}
.list span:hover {
  cursor: pointer;
  color: #9c9c9c;
}

@media screen and (max-width: 1400px) and (min-width: 700px) {
  body .img {
    height: 40%;
  }
  .overlay {
    padding: 3rem 1rem 1rem 1rem;
  }
}
@media screen and (max-width: 700px) {
  body .img {
    display: none;
  }
  body .mobileimg {
    display: block;
    height: 40%;
  }
  .overlay div h1 {
    font-size: 30px;
  }
  .todotext {
    font-size: 15px;
  }
}

/*# sourceMappingURL=style.css.map */
