@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  font-family: "Fredoka One", cursive;
  color: #b1b695;
}

body {
  padding: 5rem 0;
  background: linear-gradient(125deg, #b1b695 0%, #53917e 100%);
  min-height: 100vh;
}
body .container {
  width: 540px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(125deg, #63535b 0%, #6d1a36 100%);
  padding: 2rem 1rem;
  border-radius: 35px;
  -webkit-box-shadow: 0px 10px 30px 0px #3f3f3f;
          box-shadow: 0px 10px 30px 0px #3f3f3f;
}
body h1 {
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-size: 2.35rem;
  text-shadow: -1px 3px 2px #474747;
}
body form {
  margin: 2rem 0;
}
body form input {
  width: 250px;
  height: 50px;
  border-radius: 50px;
  padding: 0 1rem;
  border: 2px solid #b1b695;
  font-size: 1.3rem;
  background: linear-gradient(125deg, #b1b695 0%, #53917e 100%);
  color: #3f3f3f;
  -webkit-box-shadow: 0px 2px 10px 0px #b1b695;
          box-shadow: 0px 2px 10px 0px #b1b695;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
body form input::-webkit-input-placeholder {
  color: #fccaa1;
}
body form input::-moz-placeholder {
  color: #fccaa1;
}
body form input:-ms-input-placeholder {
  color: #fccaa1;
}
body form input::-ms-input-placeholder {
  color: #fccaa1;
}
body form input::placeholder {
  color: #fccaa1;
}
body form input:focus {
  border: 3px solid #fccaa1;
}
body ul {
  text-align: left;
}
body ul li {
  list-style: none;
  padding: 0.7rem;
  position: relative;
  font-size: 1.2rem;
  cursor: pointer;
}
body ul li:before {
  content: "✽";
  padding: 0.6rem;
  font-size: 1.3rem;
  color: #fccaa1;
}
body ul li:after {
  opacity: 0;
}
body ul li:hover:after {
  content: " (terminé)";
  opacity: 0;
  font-size: 1.1rem;
  color: #fccaa1;
  font-style: italic;
  -webkit-animation: pseudoClassAnim 1s forwards;
          animation: pseudoClassAnim 1s forwards;
}
body ul .checked:before {
  content: "✔";
  padding: 10px 10px;
  font-size: 1.1rem;
  color: #fccaa1;
}
body ul .checked:hover:after {
  content: " (supprimer)";
  font-size: 1.1rem;
  color: #fccaa1;
  opacity: 0;
}

@-webkit-keyframes pseudoClassAnim {
  to {
    opacity: 1;
  }
}

@keyframes pseudoClassAnim {
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */