/* CSS Variables */
:root {
    --primary: rgba(239, 245, 242, 0.5);
    /*--primary: rgba(120, 129, 126, 0.925);
    --dark: rgb(245, 247, 244);*/
    --dark: rgb(29, 31, 29);
    --light: #fff;
    --shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
    --white: white;
    --btn:rgb(19, 66, 4);
  }
  
  html {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
  }

  body {
    background: white;
    margin-left: 30px;
    margin-right: 30px;
    line-height: 1.4;
  }

/* Boxes */
.boxes {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-self: center;
}

.img_product{
  width: 250px;
}
  
.box {
    display: flex;
    background:  white;
    text-align: center;
    flex-direction: column;
    /* padding: 1.5rem 1.5rem; */
    box-shadow: var(--shadow);
    justify-items: center;
}



.top-box .price {
  z-index: 1;
  font-size: 2.5rem;
  background: rgba(223, 253, 178, 0.5);
  color: var(--green);
  padding: 0.6rem 1.3rem;
  border: 0;
}
  
.btn {
  background: black;
  color: var(--light);
  padding: 0.6rem 1.3rem;
  text-decoration: none;
  border: 0;
}

@media (max-width: 800px) {
  .img_product{
    width: 250px;
  }
}