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

:root {
  --deep-dark: rgb(26, 26, 26);
  --light-dark: rgb(17, 17, 17);
  --light: rgb(245, 245, 245);
}

body {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
  height: 100vh;
  font-family: "Andika", sans-serif;
  background-color: #000000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 400'%3E%3Cdefs%3E%3CradialGradient id='a' cx='396' cy='281' r='514' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23CD1B56'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/radialGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='400' y1='148' x2='400' y2='333'%3E%3Cstop offset='0' stop-color='%235011F4' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%235011F4' stop-opacity='0.5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='800' height='400'/%3E%3Cg fill-opacity='0'%3E%3Ccircle fill='url(%23b)' cx='267.5' cy='61' r='300'/%3E%3Ccircle fill='url(%23b)' cx='532.5' cy='61' r='300'/%3E%3Ccircle fill='url(%23b)' cx='400' cy='30' r='300'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.fas {
  pointer-events: none;
}

.to-do {
  width: 800px;
  margin: 0 10px;
  border-radius: 5px;
  text-align: center;
}
.to-do .header {
  border-radius: 80px 20px 0 0;
  padding: 20px 1% 20px;
  background-color: rgba(0, 0, 0, 0.2666666667);
}
.to-do .header h1 {
  color: var(--light);
  font-size: 50px;
  letter-spacing: 2px;
  font-family: "Bangers", cursive;
}
.to-do .header .to-do-input {
  padding: 10px 20px;
  width: 80%;
  margin: 10px;
  border-radius: 5px;
  border: none;
  color: var(--light-dark);
  background-color: var(--light);
}
.to-do .header .add-btn {
  border: none;
  padding: 10px 22px;
  border-radius: 5px;
  background-color: var(--light);
  color: var(--deep-dark);
  text-transform: uppercase;
  cursor: pointer;
  margin: 0 10px 0 10px;
  transition: color 0.3s, background-color 0.3s;
}
.to-do .header .add-btn:hover {
  background-color: rgba(0, 0, 0, 0.3098039216);
  color: #fff;
}
.to-do .to-do-list {
  padding: 10px 5px;
  border-radius: 0 0 40px 10px;
  background-color: #fff;
}
.to-do .to-do-list h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
}
.to-do .to-do-list .info-error {
  margin-top: 5px;
  color: var(--dark-blue);
}
.to-do .to-do-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px;
  padding-left: 20px;
  list-style: none;
  text-align: left;
  background-color: var(--light);
}

.pop-up {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  left: 50%;
  bottom: 10px;
  width: 80%;
  transform: translateX(-50%);
  color: var(--light);
  background-color: rgba(0, 0, 0, 0.7607843137);
  border-radius: 40px 10px 40px 10px;
}
.pop-up h3 {
  padding: 10px;
  text-transform: uppercase;
}
.pop-up .pop-up-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
}
.pop-up .pop-up-body .pop-up-info {
  margin-bottom: 10px;
  color: var(--light);
}
.pop-up .pop-up-body .pop-up-input {
  width: 100%;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  background-color: var(--light);
  color: var(--light-dark);
}
.pop-up .pop-up-body .pop-up-btn {
  display: inline-block;
  width: 30%;
  padding: 10px 22px;
  margin: 20px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  color: var(--deep-dark);
  background-color: var(--light);
  transition: color 0.5s, background-color 0.5s;
  cursor: pointer;
}
.pop-up .pop-up-body .pop-up-btn:hover {
  background-color: #88143a;
  color: #fff;
}

.tools {
  display: inline-block;
  text-align: center;
}
.tools button {
  padding: 15px 10px;
  border: none;
  background-color: transparent;
  transition: background-color 0.3s;
  cursor: pointer;
}
.tools button:hover {
  background-color: #ddd;
}
.tools .edit {
  font-weight: bold;
  color: #0686fd;
}
.tools .delete {
  color: tomato;
}

.complete {
  color: #43cb21;
}

.completed {
  font-size: 12px;
  text-decoration: line-through;
  font-style: italic;
  color: var(--light-dark);
}

span {
  color: white;
  position: fixed;
}

.author {
  bottom: 5px;
  right: 10px;
  font-size: 12px;
  z-index: -1;
}

.name {
  bottom: 15px;
  right: 10px;
  font-family: "Corinthia", cursive;
  font-size: 35px;
  z-index: -1;
}

@media (max-width: 615px) {
  .to-do .header {
    border-radius: 60px 20px 0 0;
  }
  .to-do .header h1 {
    font-size: 35px;
  }
  .to-do .header .to-do-input {
    width: 93%;
    text-align: center;
  }
  .pop-up {
    width: 96%;
  }
  .pop-up .pop-up-body .pop-up-btn {
    width: 37%;
  }
}
@media (max-width: 356px) {
  .pop-up .pop-up-body .pop-up-btn {
    width: 60%;
  }
  .pop-up .pop-up-body .cancel {
    margin-top: 0px;
  }
}/*# sourceMappingURL=style.css.map */