@media screen and (min-width:1200px) {

    .products-title {
        color: rgb(255, 235, 205);
        margin-left: 50px;
        position: absolute;
        margin-top: -65px;
        margin-left: -15px;
        background-color: rgb(41, 51, 57);
        padding: 2px 5px;
        border-radius: 10px;
    }

    .products {
        border: 1px solid dimgray;
        margin: 20px;
        padding: 4%;
        background-color: rgb(71, 88, 99);
        border-radius: 20px;
        margin-top: 40px;
    }

    .products-row {
        display: flex;
        justify-content: flex-start;
        gap: 4%;
        margin-bottom: 4%;
    }

    .product {
        border: none;
        width: 25%;
        position: relative;
        transition: transform 0.3s ease-in-out;
        text-align: center;
    }

    .product:hover {
        transform: scale(1.1);
    }

    .product-img {
        box-shadow: 2px 2px 10px rgb(101, 101, 101);
        border-radius: 10px;
        background-color: rgb(142, 142, 142);
        width: 100%;
        aspect-ratio: 1/1;
    }

    .product-img img {
        width: 100%;
        aspect-ratio: 1/1;
        border-radius: 10px;
    }

    .product h4 {
        position: relative;
        margin: 0;
        margin-top: 10px;
        color: rgb(245, 245, 220);
    }

}

@media screen and (min-width: 769px) and (max-width: 1199px) {

    .products-title {
        color: rgb(255, 235, 205);
        position: absolute;
        margin-top: -55px;
        margin-left: 10px;
        background-color: rgb(41, 51, 57);
        padding: 2px 6px;
        border-radius: 10px;
        font-size: 1.3rem;
    }

    .products {
        border: 1px solid dimgray;
        margin: 15px 20px;
        padding: 3%;
        background-color: rgb(71, 88, 99);
        border-radius: 20px;
        margin-top: 40px;
    }

    .products-row {
        display: flex;
        justify-content: flex-start;
        gap: 3.5%;
        margin-bottom: 4%;
        flex-wrap: wrap;
    }

    .product {
        border: none;
        width: 48%;
        position: relative;
        transition: transform 0.3s ease-in-out;
        text-align: center;
        margin-bottom: 20px;
    }

    .product:hover {
        transform: scale(1.05);
    }

    .product-img {
        box-shadow: 2px 2px 10px rgb(101, 101, 101);
        border-radius: 10px;
        background-color: rgb(142, 142, 142);
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .product-img img {
        width: 100%;
        aspect-ratio: 1/1;
        border-radius: 10px;
    }

    .product h4 {
        position: relative;
        margin: 10px 0 0;
        color: rgb(245, 245, 220);
        font-size: 1.2rem;
    }

}

@media screen and (max-width: 768px) {

    .products-title {
        color: rgb(255, 235, 205);
        margin-left: 50px;
        position: absolute;
        margin-top: -45px;
        margin-left: 0px;
        background-color: rgb(41, 51, 57);
        padding: 2px 5px;
        border-radius: 10px;
    }

    .products {
        border: 1px solid dimgray;
        margin: 10px;
        padding: 2%;
        padding-top: 30px;
        background-color: rgb(71, 88, 99);
        margin-top: 40px;
    }

    .product {
        border: none;
        width: 90%;
        position: relative;
        text-align: center;
        margin: auto;
    }

    .product-img {
        box-shadow: 2px 2px 10px rgb(101, 101, 101);
        border-radius: 10px;
        background-color: rgb(142, 142, 142);
        width: 100%;
        aspect-ratio: 1/1;
    }

    .product-img img {
        width: 100%;
        aspect-ratio: 1/1;
        border-radius: 10px;
    }

    .product h4 {
        position: relative;
        margin-top: 5px;
        color: rgb(245, 245, 220);
    }

}