body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f5f5f5;
  font-family: sans-serif;
}
div {
  position: relative;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 200px;
  background: white;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.2);
  margin: 8px 0;
  padding: 0 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  transition: box-shadow .2s ease-in-out;
}
div:active {
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
}