.figure {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 40px 0;
}
.figure:first-child {
  margin-top: 0;
}
.figure:last-child {
  margin-bottom: 0;
}
.figure .figure_image img[data-default=true] {
  max-width: 400px;
  max-height: 300px;
}
.figure .figure_caption {
  margin-top: 10px;
  margin-bottom: 0;
  font-style: italic;
  text-align: center;
}
.figure[data-flat=false] .figure_image {
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2509803922);
}
.figure[data-flat=false] .figure_image img {
  transition: transform 0.25s ease;
}
.figure[data-flat=false] .figure_image:hover img {
  transform: scale(1.1);
}

/*# sourceMappingURL=figure.css.map */