@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
body {
  margin: 0;
  box-sizing: border-box;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  touch-action: pan-y;
  font-family: "Roboto", sans-serif;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 650px;
  width: 95%;
  margin: 0 auto;
  flex-grow: 1;
}

h1 {
  font-size: 4rem;
  margin: 0;
  color: #fff;
}

a {
  text-decoration: none;
}

form.todo > div:first-child {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
form.todo > div:first-child input {
  height: 100%;
  box-sizing: border-box;
  border-radius: 8px;
}

.todo__container {
  margin-top: 10px;
  overflow: scroll;
}
.todo__container li {
  padding: 15px 10px;
  border-bottom: 1px solid #48474c;
  background-color: #fff;
  border-radius: 8px;
}
.todo__container li {
  margin-bottom: 10px;
}
.todo__container span {
  color: #48474c;
  font-size: 1.5rem;
}
.todo__container::-webkit-scrollbar {
  display: none;
}
.todo__desc {
  margin-top: 20px;
  width: 100%;
  min-height: 100px;
}
.todo__desc p {
  font-size: 1.4em;
}
.todo input {
  display: block;
}

.buttons-container {
  display: flex;
  justify-content: space-between;
  max-width: 100px;
}

.body {
  position: relative;
}
.body label {
  color: #fff;
}
.body__light {
  background-color: #ebebeb;
}
.body__light::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 45dvh;
  min-height: 350px;
  background: url(../images/bg-desktop-light.jpg) no-repeat center;
  background-size: cover;
  z-index: -1;
}
.body__dark {
  background-color: #181824;
}
.body__dark::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 45dvh;
  min-height: 350px;
  background: url(../images/bg-desktop-dark.jpg) no-repeat center;
  background-size: cover;
  z-index: -1;
}

.button-mode {
  width: 45px;
  height: 45px;
  border: none;
}
.button-mode__light {
  background: url(../images/icon-moon.svg) no-repeat center;
  background-size: contain;
}
.button-mode__dark {
  background: url(../images/icon-sun.svg) no-repeat center;
  background-size: contain;
}

#delete {
  border: none;
  background: url(../images/trash.svg) no-repeat center;
  background-size: 35px;
  width: 35px;
  height: 35px;
}

.edit-btn {
  border: none;
  background: url(../images/icon-edit.svg) no-repeat center;
  background-size: 35px;
  width: 35px;
  height: 35px;
}

.header {
  text-align: right;
}
.header__date {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-top: 20px;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.todo__input {
  width: 100%;
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 1.2rem;
}
.todo__input::placeholder {
  color: #48474c;
}

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