/* Set a slightly darker faded green background */
body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #d0ebd2; /* Slightly darker green */
    font-family: Arial, sans-serif;
}

/* Styling for the image */
.main-image {
    width: 595px;
    height: 595px;
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and text */
}

/* Centered text styling */
.container {
    text-align: center;
}

h1 {
    font-size: 2.5em;
    color: #000000; /* Dark blue-gray for better contrast */
}

/* Styling for the Orders button */
.orders-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    background-color: #3a5a40; /* Dark green to match theme */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

.orders-button:hover {
    background-color: #2e4932; /* Slightly darker green on hover */
}

