
*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  background: #F2F2F2;
  font-size: 12px;
  color: #3c3c3c;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.content {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.figure {
  margin: 0;
  width: 100%;
  padding: 40px;
  display: flex;
}


.figure__img {
  display: block;
  max-width: 725px;
  width: 100%;
  height: auto;
  margin-right: auto;
}
