I am currently facing a rather simple issue.
I have a 3D container with text inside it, here is an example:
.container{
transform: perspective(120px) rotateY(45deg);
}
<div class="container">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod, quis debitis odio facere
voluptate <br> expedita non vel, accusamus eos, autem ipsam. Quis, in necessitatibus quod
assumenda accusamus <br> asperiores deleniti sint!
</div>
However, the quality of the text appears to be quite low. How can I resolve this?
I have already attempted the following solution without success:
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;