Is there a way to centrally align slide content in Marp without duplication?
I managed to achieve this with the following code snippet, but I had to manually paste it on each slide:
---
<style scoped>
section {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
</style>
# Questions
---
I attempted to use @apply and classes for achieving the same result, but without any luck.