body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

/* Fluid Container */
.my-fluid {
    width: 100%;
    height: auto;
    padding-bottom: 80px;
}

/* Main Container */
.my {
    width: 1200px;
    height: auto;
    margin: auto;
}

/* Search Bar */
.my .searchh {
    display: flex;
    padding: 30px 0;
    justify-content: space-between;
    align-items: center;
}

.my .searchh h1 {
    letter-spacing: 3px;
    display: inline-block;
    border-bottom: 2px solid green;
    padding-bottom: 10px;
}

.my .searchh input[type="text"] {
    width: 60%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #000;
    outline: none;
}

.my .searchh input::placeholder {
    color: green;
    font-weight: 500;
}

/* Product List */
.my .productt-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.my .productt {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

.my .productt img {
    height: 250px;
    width: 250px;
    object-fit: cover;
}

.my .productt h3 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
}

.my .productt h4 {
    margin-top: 5px;
    font-size: 18px;
    color: #888;
}

/* Phone Text */
.phonetext {
    text-align: center;
    font-size: 30px;
    display: none;
}

/* Media Queries */

/* Large screens (min-width: 1200px) */
@media only screen and (min-width: 1200px) {
    .my {
        width: 1200px;
    }
}

/* Medium screens (min-width: 992px) and (max-width: 1199px) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .my {
        width: 90%;
    }
    .my .productt {
        width: calc(33.33% - 10px);
    }
}

/* Small screens (min-width: 768px) and (max-width: 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .my {
        width: 90%;
    }
    .my .productt {
        width: calc(50% - 10px);
    }
}

/* Extra small screens (max-width: 767px) */
@media only screen and (max-width: 767px) {
    .my {
        width: 100%;
        padding: 20px;
    }
    .my .searchh {
        flex-direction: column;
        align-items: center;
    }
    .my .searchh h1 {
        font-size: 24px;
    }
    .my .searchh input[type="text"] {
        width: 80%;
    }
    .my .productt-list {
        flex-direction: column;
    }
    .my .productt {
        width: 100%;
        margin-bottom: 30px;
    }
    .my .productt img {
        height: 200px;
        width: 200px;
    }
    .phonetext {
        display: block;
    }
}