html {
    box-sizing: border-box;
    background: url("./../assets/liste.jpg") center no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

*, *:before, *:after {
    box-sizing: inherit; 
}

.wrapper {
    padding: 20px;
    max-width: 350px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 0 0 8px rgba(175,240,95,0.3);
}

h2 {
    text-align: center;
    font-family: fantasy;
    margin: 0;
    font-weight: 700;
}

.plates {
    margin: 0;
    padding: 0;
    text-align: left;
    list-style: none;
}

.plates li {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 10px 0;
    font-weight: 100;
    font-family: cursive;
    display: flex;
    align-items: center;
}

.plates label {
    flex: 1;
    cursor: pointer;
    margin: 0;
}

.plates input {
    vertical-align: middle;
    font-family: cursive;
    margin-right: 1em;
}

.plates input + label:before {
    margin-right: 10px;
}

.add-items {
    margin-top: 20px;
}

.add-items input {
    padding: 10px;
    font-family: cursive;
    outline: 0;
    border: 1px solid rgba(0,0,0,0.1);
}
