* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    .class{
        max-width: 100%;
        height: auto;
        position: relative;
    }
    .banner-text{
        position: absolute;
        top: 30%;
        left: 50%;
        color: #ddd;
        padding: 100px;
    }
    .banner-text >h2{
       font-size:50px;
       text-transform: uppercase;
       font-weight: bold;
       color: #777;
    }
    
    .banner-text >button{
        font-size:30px;
        text-transform: uppercase;
        font-weight: 400;
        color: #917a09;
        margin: 5px;
        padding: 5px;
        border-radius: 10px;
     }
    
    .banner-text > btn{
        color: #917a09;
    }
    .banner-text >p{
        font-size:23px;
        text-transform: capitalize;
        font-weight: bold;
        color: #f8f3f3;
     }
     .btn:hover{
        background-color: #e4bdbd;
        transform: scale(1.05);
     }
     .footer{
        max-width: 100%;
        height: 90px;
        background-color: #1e2b35;
     }
     .foot1{
        display: flex;
        justify-content: start;
        justify-content: space-evenly;
        color: white;
        align-items: center;
       padding-top: 30px;
     }
    /* Navbar styles */
    nav {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 20px;
    text-align: center;
    }
    nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
    }
    nav ul li {
    margin-right: 20px;
    }
    nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    transition: color 0.3s ease;
    }
    nav ul li a:hover {
    color: #3498db;
    }
    
    /* Product Grid styles */
    .product-grid {
    display: grid;
    gap: 50px;
    padding: 40px;
    justify-items: center;
    }
    .product-item {
    border: 1px solid #ddd;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
    background-color: #fff;
    border-radius: 5px;
    }
    .product-item img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    }
    .product-item h3 {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    }
    .product-item p {
    font-size: 14px;
    color: #777;
    }
    
    /* Hover effect */
    .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .product-item:hover img {
    transform: scale(1.05);
    }
    
    /* Icon styles */
    .fa {
    font-size: 24px;
    margin-right: 5px;
    }
    
    /* Responsive design */
    @media only screen and (min-width: 768px) {
    /* Tablet */
    .product-grid {
    grid-template-columns: repeat(3, 1fr);
    }
    }
    
    @media only screen and (min-width: 992px) {
    /* Laptop */
    .product-grid {
    grid-template-columns: repeat(5, 1fr);
    }
    }
    
    
    form {
    margin: 20px auto;
    max-width: 400px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    }
    input[type="text"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    }
    label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    }
    input[type="submit"] {
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    }
    input[type="submit"]:hover {
    background-color: #1e2b35;
    }
    
    #text {
    display: flex;
    justify-content: center;
    }
    
    .buy-button {
    background-color:  #2c3e50;
    color: #fff;
    border: none;
    padding-top: 30px;
    padding: 10px 20px;
    border-radius: 3px;
    /* cursor: pointer; */
    
    transition: background-color 0.3s ease;
    }
    
    .buy-button:hover {
    /* background-color: #88cdfb; */
    transform: scale(1.05);
    }
    
    .class{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #box{
        margin-top: 100px;
        margin-bottom: 100px;
        width: 100%;
    }