.ordercontainer {
    color:#000;
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
hh1 {
    text-align: center;
    color: #333;
}
.input-group {
    margin-bottom: 10px;
}
.input-group label {
    display: block;
    font-weight: bold;
    color: #555;
}
.input-group input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.product-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}
.product-card h3 {
    margin: 0;
    color: #333;
}
.product-card p {
    margin: 10px 0 0;
    color: #888;
}
.orderbutton {
    width: 100%;
    padding: 10px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.orderbutton:hover {
    background-color: #4cae4c;
}
.bottom-signup {
     position: absolute;
     bottom: 0;
     right: 0;
     margin-right: 10px;
     margin-bottom: 5px;
 }

@media screen and (max-width: 760px) {
    .ordercontainer {
        width: 70%;
    }
    .bottom-signup{
        display:none;
    }
}

@media screen and (max-width: 480px) {
    .ordercontainer {
        width: 100%;
    }
}


