@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&family=Roboto:wght@300;400&display=swap');

:root {
    --primary-color: mediumpurple;
}
.header {
    text-align: center;
    background: var(--primary-color);
    color: #FFF;
    padding: 5px;
    letter-spacing: 5px;
    font-family: 'Patrick Hand', cursive;
    text-transform: uppercase;
}
h1 {

}
ul {
    list-style: none;
    padding: 0 0 35px;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
}
li {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    height: 50px;
    padding: 0 25px;
    font-family: 'Patrick Hand', cursive;
    font-size: 25px;
    letter-spacing: 5px;
    color: #666;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 35px;
    background-color: #ccc;
    color: #fff;
    width: 100%;
    text-align: center;
}
.addinput {
    color: rgba(0,0,0,0.1);
    text-align: center;
    cursor: pointer;
    width: 100%;
}
input.additem {
    text-align: left !important;
    text-indent: 5px;
    font-size: 20px;
    color: inherit;
    border-radius: 5px;
}
.strike {
    text-decoration: line-through;
}

/* bootstrap and semantic icon overrides */
.icon {
    height: initial !important;
    cursor: pointer;
}
.btn-theme {
    background-color: var(--primary-color);
    text-transform: uppercase;
    border: none;
    outline: none;
    margin-left: 10px;
}