.container {
  display: flex;
  position:relative;
  width: 80%;
  top:75px;
  margin-left: auto;
  margin-right: auto;
}

.box {
  flex:1;
  width: 400px;
  height: 450px;
  padding: 20px;
  border: 1px solid white;
  background-color: #f1f1f1;
  margin-left: 50px;
  text-align: center;
  border-radius: 5px;
  background-color: rgba(0,0,0, 0.7);
  
}

.box p {
  position:relative;
  margin-top: -5px;
  opacity: 1;
  color: white;
  font-size: 36px;
  font-weight: bold;

}

.box h3 {
  position:relative;
  margin-top: 0px;
  opacity: 1;
 color:rgb(122, 122, 122);
 text-transform: uppercase;
 font-size: 20px;

}

.box h4 {
  position:relative;
  margin-top: -25px;
  opacity: 1;
  font-size: 16px;
  color: darkgrey;
}

.box a{
  opacity: 1;
  color: #2375D8;
  cursor: pointer;
  text-decoration:none;
}

.box a:hover {
  color: white;
}

.box a2{
  opacity: 1;
  color: white;
  cursor: pointer;
  text-decoration:none;
}

.box a2:hover {
  color: red;
}
  
  .products img {
    border: 1px dotted white;
    width: 400px;
    height: 200px;
    object-fit:cover;
    margin-bottom:20px;

  }


