body{
  background-image: url(./img/background.jpg);
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
}

h2 {
  text-align: center;
}

p {
  text-align: center;
  font-style: italic;
}

.selected {
  background-color: rgba(128, 128, 128, 0.289);
}

.completed {
  text-decoration: line-through solid rgb( 0 , 0 , 0);
}

.input-text {
  padding: 0.3%;
  font-size: 100%;
  width: 70%;
  position: relative;
  left: 10%;
}


.add {
  background-image: url(img/add.png);
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 10px;
  border-radius: 200%;
  position: relative;
  left: 11%;
  width: 20px;
}


.arrow {
  border: solid black;
  border-width: 0 6px 6px 0;
  display: inline-block;
  padding: 0.4%;
  margin: 0.3%;
  background-color: orange;
  position: relative;
  left: 10%;
  width: 20px;
  padding: 7px;
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.remove{
  background-image: url(img/x.jpg);
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0.9%;
  border-radius: 200%;
  position: relative;
  left: 10%;
  margin: 2px;
  width: 20px;
  padding: 10px;
}

.removeCheck{
  border-radius: 2%;
  position: relative;
  left: 10%;
}

.trash{
    border-radius: 2%;
    position: relative;
    left: 10%;
}

.save{
  border-radius: 2%;
  position: relative;
  left: 10%;
}

button:hover {
  cursor: pointer;
}

button:active {
  background-color: gray;
}

@media (max-width: 480px) {
  .arrow {
    border-width: 0 4px 4px 0;
    padding: 3%;
    margin: 1%;
    left: 5%;
  }
}