html {
    font-family: sans-serif;
    background: #1a73e8;
}

.inbox {
    max-width: 400px;
    margin: 50px auto;
    background: white;
    border-radius: 5px;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
}

.item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
}

.item:last-child {
    border-bottom: 0;
}

input:checked + label {
    background: #f9f9f9;
    text-decoration: line-through;
}

input[type="checkbox"] {
    margin: 20px;
}

label {
    margin: 0;
    padding: 20px;
    transition: background 0.2s;
    flex: 1;
    font-family: "helvetica neue";
    font-size: 20px;
    font-weight: 200;
    border-left: 1px solid #d1e2ff;
}

p {
    text-align: center;
    font-family: Helvetica, sans-serif;
    font-size: 25px;
    text-decoration: underline;
}
