@import url("https://fonts.googleapis.com/css2?family=Bangers&family=Merriweather&family=Oswald:wght@300&family=Poppins:wght@200&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

h1 {
  margin-bottom: 5vh;
  margin-top: 3vh;
  font-family: 'Bangers', cursive;
  letter-spacing: 3px;
}

.container {
  width: 100vw;
  min-height: 87vh;
  background-color: pink;
  border-top-right-radius: 13%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input {
  margin-top: 2vh;
  width: 80vw;
  height: 7vh;
  background-color: white;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input input {
  border: 0;
  border-bottom: 1px solid black;
  -webkit-transition: border-bottom .3s ease-in;
  transition: border-bottom .3s ease-in;
  width: 25vw;
}

.input input:focus {
  border: 0;
  border-bottom: 2px solid pink;
  padding-bottom: 2px;
  outline: none;
}

#add {
  display: inline-block;
}

#add i {
  color: pink;
  padding-left: 2vw;
}

#add i:hover {
  color: #f84f6b;
  cursor: pointer;
}

ul {
  list-style: none;
}

ul li {
  width: 80vw;
  height: 9vh;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid black;
}

ul li .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 3rem;
  font-family: 'Merriweather', serif;
  font-size: 18px;
}

ul li .text span {
  font-size: 15px;
}

ul li .li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-right: 3rem;
}

.li span {
  background-color: pink;
  border-radius: 5rem;
  padding: 0 1rem;
  margin-bottom: .5rem;
}

#tick:hover {
  background-color: #56e656;
}

#cross:hover {
  background-color: #f34141;
}

.green {
  background-color: #89f389;
}

.red {
  background-color: #f75b5b;
}
/*# sourceMappingURL=style.css.map */