.product {
  background-color: var(--primary-color);
  border-radius: 25px;
  display: flex;
  margin: 1rem;
  padding: 0;
  width: 60vh;
  height: 30vh;
}

.productImage {
  width: 50%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.productImage img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover; 
}

.productDesc {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  text-align: center;
  overflow: auto;
  width: 30vh;
  height: 30vh;
}

@media screen and (max-width: 800px) {
	.product {
    flex-direction: column;
    height: auto;
    width: 80%;
  } 

  .productImage {
    width: 100%;
    height: 50%;
  }  
  
  .productDesc {
    width: 95%;
    height: 50%;
    margin: 1vh;
  }
}