body {background-color: rgb(102, 102, 102)}

<style>

.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 10px;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

img {
    border-radius: 10px 10px 0 0;
  }

.container {
  background-color: rgb(0, 0, 0);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  color: white;
  padding: .01vw;

  font-size: 100%;
}

</style>