body {
    font-family: 'Lexend Deca', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #7d7d7d;
}

header {
    background-color: #ffffff;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-width: 150px !important;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav ul li a:hover {
    color: #007bff;
}

main {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    text-align: center;
    transition: box-shadow 0.3s;
    width: calc(33.33% - 20px);
    box-sizing: border-box;
    overflow: hidden;
}

.product-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-item img {
    max-width: 100%;
    height: auto;
}

.product-item h2 {
    font-size: 1em;
    line-height: 1.2;
    max-height: 3.6em;
    overflow: hidden;
    text-overflow: ellipsis;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    position: relative;
    bottom: 0;
    width: 100%;
    color: #333;
}

.banner {
    background-color: #ff6a00; /* LTT orange */
    color: white; /* Text color */
    text-align: center;
    padding: 20px;
    margin: 20px 0; /* Space above and below the banner */
}

.banner h2 {
    margin: 0; /* Remove default margin */
}

.order-button {
    display: inline-block; /* Make the button inline */
    background-color: #ffffff; /* Button background color */
    color: #ff6a00; /* LTT orange text color */
    padding: 10px 20px; /* Padding for the button */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text */
    margin-top: 10px; /* Space above the button */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.order-button:hover {
    background-color: #ff6a00; /* Change background on hover */
    color: white; /* Change text color on hover */
}

@media (max-width: 768px) {
    /* Styles for mobile devices */
    
    header {
        padding: 5px; /* Reduce padding */
    }

    .logo img {
        max-width: 120px; /* Smaller logo on mobile */
    }

    nav ul {
        display: flex; /* Use flexbox for navigation */
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
    }

    nav ul li {
        margin: 5px 0; /* Space between items */
    }

    main {
        padding: 10px; /* Reduce padding */
        flex-direction: column; /* Stack product items vertically */
        align-items: center; /* Center items */
    }

    .product-item {
        width: 100%; /* Full width on mobile */
        margin: 10px 0; /* Space between items */
    }

    .banner {
        padding: 15px; /* Reduce padding */
    }

    .banner h2 {
        font-size: 1.2em; /* Adjust font size */
    }

    .message-container {
        padding: 30px; /* Reduce padding */
    }

    .centered-image {
        width: 80%; /* Make image larger on mobile */
    }

    .back-button {
        padding: 8px 16px; /* Adjust button padding */
    }
}

.centered-image {
    display: block; /* Center the image */
    margin: 20px auto; /* Center horizontally and add vertical spacing */
    max-width: 100%; /* Ensure the image does not exceed the width of its container */
    height: auto; /* Maintain aspect ratio */
}

.message-container {
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
    padding: 20px; /* Add some padding */
}

.tile {
    background-color: white; /* White background for the tile */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding inside the tile */
    text-align: center; /* Center text */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 400px; /* Max width for the tile */
    width: 100%; /* Full width on mobile */
}

.back-button {
    display: inline-block; /* Make the button inline */
    background-color: #ff6a00; /* LTT orange */
    color: white; /* Text color */
    padding: 10px 20px; /* Padding for the button */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text */
    margin-top: 10px; /* Space above the button */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.back-button:hover {
    background-color: #e65c00; /* Darker orange on hover */
}