.prod_img{
    width: 400px;
    height: 400px;
}

h1{
    font-family: Roboto;
    font-size: 42px;
    font-weight: 500;
    color:#000;
    text-align: center;
    padding-top: 30px;
}


.catalog_product{
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    position: relative;
}

.catalog_text{
    font-family: Roboto;
    font-size: 27px;
    font-weight: 500;
    text-align: center;
    color: #000;
    text-decoration: none;
}

.catalog_text:hover{
    color: #000;
    text-decoration: underline;
}

.catalog_price{
    display: inline-block;
    margin-top: 1.125rem;
    margin-bottom: 1.25rem;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    color: #4f4f4f;
}

.catalog{
    margin-bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
    .catalog_product{
        display: grid;
        grid-template-rows: 1fr 1fr ;
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
        position: relative;
    }
    .catalog_text{
        font-family: Roboto;
        font-size: 28px;
        font-weight: 500;
        text-align: center;
        color: #000;
        text-decoration: none;
    }
    .catalog_price{
        display: inline-block;
        margin-top: 1.125rem;
        margin-bottom: 1.25rem;
        font-family: Roboto;
        font-size: 20px;
        font-weight: 300;
        text-align: center;
        color: #4f4f4f;
    }
    

}