/* IMPORT GOOGLE FONT */
@import url("https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&family=Teko&display=swap");

/* UNIVERSAL RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* GENERAL STYLES */
html {
  font-family: "Kdam Thmor Pro", sans-serif;
}
body {
  min-height: 100vh;
  background-color: darkgrey;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
}

.holdContainer {
  min-width: 300px;
  height: auto;
  margin-top: 6rem;
  padding: 1rem;
}

h2 {
  position: absolute;
  top: 1rem;
  font-size: 4.5rem;
  color: blue;
  opacity: 0.4;
}

.addToDoForm {
  width: 100%;
  height: 100%;
}

.addTodoForm input {
  padding: 1.5rem 3rem;
  width: 100%;
  font-family: inherit;
  font-size: 1.2rem;
  box-shadow: 0px 5px 5px black;
  border: none;
  outline: none;
  background-color: white;
}

.listContainer {
  list-style-type: none;
  line-height: 3rem;
}

.listItem {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid grey;
  background-color: white;
}

.flex {
  display: flex;
  gap: 1rem;
}

button {
  font-family: inherit;
  width: 40px;
  height: 40px;
  border: none;
  outline: none;
  border-radius: 7px;
  cursor: pointer;
}
.checkbox-round {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid black;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transform: translateY(0.8rem);
}

.checkbox-round:checked {
  appearance: auto;
  clip-path: circle(50% at 50% 50%);
  background-color: blue;
}
.strike {
  text-decoration: line-through;
  color: grey;
}
