.header {
  margin: 25px;
  color: white;
  position: sticky;
  top: 0;
  text-align: center;
}
.header a {
  font-size: 35px;
}

.form {
  padding: 24px;
  display: flex;
}
.form input {
  width: 100%;
  padding: 8px;
  margin-right: 10px;
  border: 1px solid white;
  font-size: 18px;
}
.form input:focus {
  outline: none;
}
.form button:active {
  -ms-transform: translateY(1px);
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}

.alert {
  padding: 24px;
}
.alert--danger {
  background-color: rgb(111, 178, 203);
  color: white;
  text-align: center;
  backdrop-filter: blur(10px);
}

.todo-list--wrapper {
  background-color: rgb(111, 178, 203);
  padding: 15px 0;
  margin-bottom: 15px;
}
.todo-list--item {
  margin: 0 24px;
  padding: 10px 0 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid white;
}

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

body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Avenir", "DIN Alternate", sans-serif;
  font-weight: 200;
}

ul {
  list-style: none;
}

h1 {
  font-weight: 200;
}

.wrapper {
  background-color: rgb(111, 178, 203);
  width: 40%;
}

p {
  color: white;
  font-size: 18px;
}

button {
  border: none;
  background-color: rgb(224, 112, 88);
  color: white;
  padding: 12px 20px;
  cursor: pointer;
}

.js-mouse {
  pointer-events: none;
  position: fixed;
  top: -15px;
  left: -15px;
  width: 20px;
  height: 20px;
  background-color: rgba(0, 0, 102, 0.5);
  border-radius: 50%;
  transform: translate(0, 0) scale(1.1);
  transition: all 0.3s ease-out;
  z-index: 9999;
  opacity: 0;
}

.js-mouse.js-hover {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 191, 0, 0.5);
}

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