#container .info {
  border-radius: 25px;
  background: #d8d8d8;
  box-shadow: inset 3px 3px 5px #afafaf, inset -3px -3px 5px #e9e9e9;
}

#container .press {
  border-radius: 25px;
  background: #d8d8d8;
  box-shadow: 3px 3px 5px #afafaf, -3px -3px 5px #e9e9e9;
  cursor: pointer;
}

.effect {
  transform: scale(1);
  transition: transform 0.1s ease-in-out;
}
.effect:hover {
  transform: scale(1.03);
}
