@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Story+Script&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

nav {
  position: sticky;
  top: 0;
  background-color: #117eb8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav #logo {
  margin-left: 20px;
  padding: 10px;
  color: white;
}
nav #logo h1 {
  font-family: "Story Script", cursive;
  font-size: 24px;
  letter-spacing: 2px;
}
nav ul {
  margin-right: 20px;
  padding: 10px;
  display: flex;
  list-style: none;
  gap: 20px;
}
nav ul li a {
  text-decoration: none;
  color: white;
}

#content {
  width: 100%;
  height: -moz-min-content;
  height: min-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  gap: 20px;
}
#content .container {
  margin-top: 40px;
  background: white;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  gap: 10px;
  color: #117eb8;
}
#content .container .input-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#content .container .input-area input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: large;
}
#content .container .input-area button {
  width: 100%;
  padding: 10px;
  background-color: #1974dd;
  color: white;
  border: none;
  cursor: pointer;
}
#content .container .input-area button:hover {
  background-color: #1256a5;
}
#content .container .input-area #history-total {
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  #content .container {
    width: 50%;
  }
}
#content h1 {
  color: #117eb8;
  font-size: 36px;
  font-weight: 700;
}

#todo-list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  font-size: 36px;
  background-color: #fff;
  padding: 1%;
}
#todo-list div {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
}
#todo-list div span {
  gap: 0px;
  display: flex;
  justify-content: center;
}
#todo-list div a {
  text-decoration: none;
  color: #117eb8;
  font-family: "Story Script", cursive;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
}
#todo-list div a:hover {
  text-decoration: underline;
  color: #106390;
}
#todo-list div .copy-btn {
  padding: 5px 25px;
  border-radius: 10px;
  border: none;
  color: #fff;
  background: none;
  font-size: x-large;
}
#todo-list div .button-area {
  box-shadow: none;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
}
#todo-list div .button-area .edit-btn,
#todo-list div .button-area .delete-btn {
  width: 100%;
  padding: 10px;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  font-size: large;
}
#todo-list div .button-area .edit-btn {
  background-color: #28a745;
}
#todo-list div .button-area .edit-btn:hover {
  background-color: #22863a;
}
#todo-list div .button-area .delete-btn {
  background-color: #f44336;
}
#todo-list div .button-area .delete-btn:hover {
  background-color: #d32f2f;
}

hr {
  width: 70%;
  border: 2px solid #117eb8;
}

@media screen and (min-width: 1024px) {
  #todo-list div {
    width: 24%;
  }
}/*# sourceMappingURL=style.css.map */