body{
    font-family: Arial, sans-serif;
    background-color: #ccc;
    margin: 0;
    padding: 0;
    background-size: border-box;
}
.animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none; /* So clicks pass through */
}
.container {
  width: 90%;
  height: auto;
  max-width: 200px;
  text-align: center;
  padding: 0 5px;
  color: #fff;
  margin: 0px auto;
  margin-bottom: 10px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  border: whitesmoke 2px solid;
}
.container-1{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 5px solid #fff;
    border-radius: 10px;
    color: antiquewhite;
}
.container-inner{
    width: 100%;
    min-width: 200px;
    max-width: 1000px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
}
.container-inner button{
    border-radius: 10px;
    border: 2px solid;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 18px;
    width: 150px;
    height: auto;
}
#taskInput{
    width: auto;
    min-width: 200px;
    max-width: 1000px;
    height: 60px;
    border-radius: 20px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 24px;
    box-sizing: border-box;
}
#taskList{
    width: 80%;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #ccc;
}
#taskList button {
    cursor: pointer;
}
