/** @format */

@import url("https://fonts.googleapis.com/css2?family=BioRhyme:wght@300&family=Comfortaa:wght@400;700&family=Ubuntu&display=swap");

h1 {
    position: absolute;
    top:20px;
    left: 600px;
    font-family:cursive;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "BioRhyme", serif;
  font-family: "Comfortaa", cursive;
  font-family: "Ubuntu", sans-serif;
}

section {
  width: 100%;
  height: 100vh;
  background-color: #55efc4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  width: 600px;
  min-height: 480px;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
}
#input {
    width:100%;
    padding: 10px;
    font-size: 1.2rem;
    border: 0;
    box-shadow: 0px 0px 3px gray;
    font-weight: bold;
}
#todo {
    margin: 1.5rem;
    list-style: none;
    margin-left: 0px;
    width: 100%;
}
#todo li {
    position: relative;
    background-color: gray;
    padding: 20px;
    color:rgb(0, 0, 0);
    border-radius: 5px;
    margin-top: 12px;
    font-weight: bold;
    font-size: 1.2rem;
}
span {
    position: absolute;
    right: 15px;
    top: 10px;
    color:white;
}
.checked {
    text-decoration: line-through;
    color:rgb(255, 250, 250);
    background-color: cadetblue !important;
}
span:hover {
    border-radius: 50%;
   color: red;
    width:20px;
    cursor: pointer;
}