*,
*::before,
*::after {
  box-sizing: border-box;
}

*,
p {
  font: inherit;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
}

img,
input {
  display: block;
  font-family: inherit;
}

html {
  height: 100%;
}

body {
  position: relative;
  max-width: 1440px;
  min-height: 400px;
  height: 100%;
  margin-inline: auto;
  font-family: "Ubuntu", sans-serif;
  background-color: #d4f1f4;
}

.wrapper {
  width: 90%;
  margin-inline: auto;
  margin-bottom: 2rem;
}

header {
  z-index: 1;
  background-color: #003454;
}
header h1 {
  color: white;
}
header .circle {
  width: 300px;
  height: 200px;
  border-radius: 50%;
  background-color: #009fff;
  transform: translate(9rem, -10rem);
  z-index: -1;
}

form {
  width: 90%;
}
form input {
  background-color: #d4f1f4 !important;
}
form #btnSubmit {
  width: 18%;
  margin: auto;
  font-size: 1.5rem;
  line-height: 1;
  background-color: #009fff;
}
form #btnSubmit:hover {
  background-color: #c81fff;
}

li {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 0.3rem 0 0.2rem 0.7rem;
  color: #003454;
  border-bottom: 1px solid #96afb8;
  overflow: hidden;
}
li:hover {
  background-color: #e6f4f1;
}
li p {
  width: 75%;
}
li .delete-task {
  display: block;
  margin-left: auto;
  width: 65px;
  height: 22px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.55em;
  font-weight: 700;
  cursor: pointer;
  background-color: #bb2d3b;
}
li .delete-task:hover {
  color: white;
}

.todo-list {
  width: 90%;
}

@media screen and (min-width: 768px) {
  .wrapper {
    min-width: 700px;
    width: 60%;
  }

  form {
    width: 60%;
  }

  li p {
    width: 90%;
  }

  #btnReset {
    width: 150px;
  }
}

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