body {
    background-image: url("/img/kwik-e-mart-bg.jpg");
    background-size: cover;
    font-family: "Roboto", sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 444px;
    background: #FFFFFFB8;
    padding: 15px 30px;
    border-radius: 10px;
}

.logo-img {
    width: 150px;
}

.title {
    margin: 5px;
}

#count-el {
    font-size: 1.75em;
}

button {
    border-radius: 5px;
    padding: 8px 16px;
    border: 0;
    font-weight: bold;
    width: 100%;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 10px 0;
}

#increment-btn {
    background: #f8db27;
}

#save-btn {
    background: #2f64d6;
    color: #FFF;
}

#save-el {
    font-weight: bold;
}