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

body {
    background-color: black;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 1rem 3rem;

}

h1 {
    font-size: 3rem;
    text-align: center;
}

p {
    font-size: 1.5rem;
    text-align: center;
}


ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

li {
    max-width: 400px;
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    list-style: none;
    background-color: rgb(41, 36, 36);
}



.todo {
    padding: 1.5rem;
    border-radius: .5rem;
    opacity: 0;
    translate: -50%;
    transition: 600ms ease;
}


.todo.show {
    opacity: 1;
    translate: 0;
}