﻿
/*html, body {
    height: 100%;
    margin: 0;
    font-family: 'Kanit', sans-serif;
    display: flex;
    flex-direction: column;
}*/

header2 {
    background-color: #56AB2F;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

.banner {
    background: linear-gradient(90deg, #A8E063, #56AB2F);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

    .banner h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.product-card {
    background-color: #F9F9F9;
    border-radius: 12px;
    cursor:pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-card img {
        max-width: 100%;
        margin-bottom: 15px;
    }

footer {
    background-color: #eeeeee;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
}


