body{
  background-color: aliceblue;
  text-align: center;
  position: relative;
  top: 200px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
}

h1{
  letter-spacing: 5px;
  padding-bottom: 50px;
}

.item{
  width: 400px;
  height: 22px;
  border: 2px solid rgb(0, 195, 255);
  border-radius: 6px;
  background-color: aliceblue;
}
.submit-button{
  position: absolute;
  background-color: rgb(0, 195, 255);
  border-radius: 8px;
  padding: 7px;
  border: none;
  letter-spacing: 1px;
}

.clear{
  border: none;
  background-color: aliceblue;
  letter-spacing: 3px;
  color: rgb(255, 72, 0);
  position: relative;
  left: 20px;
}
.edit-button{
  border: none;
  color:  rgb(4, 128, 0);
  background-color: transparent;
}
.delete-button{
  border: none;
  color: red;
  background-color: transparent;
}

.delete-button, .edit-button{
  position: relative;
  left: 220px;
  bottom: 35px;
}
p{
  position: relative;
  right: 160px;
}
.alert{
  position: relative;
  right: 50px;
  background-color: lightcoral;
   display: inline-block;
   letter-spacing: 3px;
   font-size: 13px;
}

