#bcg
{
	position: relative; 
    width: 100%;
    height: 60vw; 
    background-image: url('./Assets/bcgx.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
	padding: 0px;
	margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
     
}
.product
{
    width: 40vw;
    height: 5vw;
    background-color: white;
    border: 4px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5vw;
    transition: transform 1s ease, background-color 1s ease;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.5vw;

}
.product:hover
{
   transform: scale(1.2);
   background-color: #aaa;
}


@media (max-width: 1000px) 
{

    #bcg
    {
        width: 100%;
        height: 100vh; 
    }
    .product
    {
        width: 80vw;
        height: 5vh;
        border: 2px solid #000000;
        margin-bottom: 05vh;
        font-size: 1.5vh;
    }
}