/* Basic Reset & Font */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
    background: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* Custom Element Wrapper */
todo-list {
    width: 100%;
    max-width: 450px;
    margin-top: 50px;
}
