    /* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
header {
    background-color: #b4e8bd; 
    height: 200px;
    font-family: 'Lobster', bold;
    color: white;
    text-align: center;
    background-image: url(../images/LLXLogo.png);
    background-repeat: no-repeat;
    background-size: 190px;
    background-position-x: 20px;
    background-position-y: 10px;
}

#divTitle {
    display: inline-block;
    position: relative;
    background-image: url(../images/Title1.png);
    background-repeat: no-repeat;
    background-size: 350px;
    top: 40px;
    height: 120px;
    width: 350px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

/* Section Styles */
section {
    margin: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #8bc695;
}

/* Shopping Items */
.item {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fefefe;
}

button {
    background-color: #8bc695;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px; 
    cursor: pointer;
}

button:hover {
    background-color: #66BB6A; 
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #b4e8bd;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
}
