* {
    box-sizing: border-box;
}
body {
    text-align: center;
    background-image: url("/assets/counting-app-materials/passenger.webp");
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    font-size: 1.5rem;
    text-shadow: 2px 2px 1px black;
    min-height: 100vh;
    background-position: center;
}
button {
    padding: 10px 30px;
    font-size: 1.1rem;
    color: white;
    font-weight: bold;
}
#increment {
    background: red;
}
#save {
    background: green;
}
#entries-el {
    background: black;
    display: inline-block;
}
