.product-container {
    width: 90%;
    margin-left: 5%;
    margin-top: 60px;
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}

.product-image-container {
    width: 24%;
    aspect-ratio: 2/3;
    margin: 0.5%;
    position: relative;
    transition: 0.5s;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    transition: 1s;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #00000000;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scale {
    transform: scale(1.1);
}

.overlay:hover {
    background-color: #1d1d1ddd;
}

.product-name {
    width: 70%;
    text-align: center;
    color: #00000000;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 35px;
    transition: 0.5s;
}

.product-name.hovered {
    color: #EC7969;
}

@media screen and (max-width:414px){
    .product-container {
        width: 100%;
        margin-left: 0;
    }

    .product-image-container {
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }

    .overlay {
        background-color: #1d1d1dbb;
    }

    .overlay:hover {
        background-color: #1d1d1dbb;
    }

    .product-name {
        color: #EC7969;
    }
}