.gutendraw {
  display: flex;
  position: relative;
  margin: 0 auto;
  flex-direction: column;
  gap: 10px;
}
.gutendraw .gutendraw-image svg {
  transition: opacity 0.3s;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
}
.gutendraw .gutendraw-title {
  text-align: center;
}
.gutendraw.gutendraw-ready .gutendraw-image svg {
  opacity: 1;
}