body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
    background: #f8f8f8;
}

#background-logo {
    width: 100%;
    height: 300px; /* Adjust based on how much of the logo you want to show */
    background-image: url('logo.jpg'); /* Path to your logo */
    background-size: contain; /* Ensures the full image fits within the container without stretching */
    background-position: center center; /* Center the image within the container */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    margin-bottom: 20px; /* Optional: Adds some space below the image */
}


h1 {
    color: #333;
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

img {
    max-width: 100%;
    border-radius: 10px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.grid a {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 200px;
}

.grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.grid h2 {
    margin: 10px 0;
    font-size: 18px;
}

.status-box {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 5px;
    font-weight: bold;
    color: white;
}

.status-blue { background-color: #3498db; }   /* Not started */
.status-green { background-color: #2ecc71; }  /* Ready to drink */
.status-red { background-color: #e74c3c; }    /* All Gone */
.status-yellow { background-color: #f1c40f; } /* Other statuses */