Documentación Legal
<style> .center-container { display: flex; justify-content: center; align-items: center; height: 10vh; /* This will make it vertically centered on the page */ } .gradient-text { font-size: 80px; font-weight: 800; margin-bottom: 15px; text-align: center; background-image: linear-gradient(90deg, rgb(0, 178, 255), rgb(214, 97, 240) 100%); /* Gradient from left to right */ -webkit-background-clip: text; -webkit-text-fill-color: transparent; /* Ensure gradient is visible */ background-clip: text; /* Standard syntax */ text-fill-color: transparent; /* For WebKit browsers */ } /* Media query for mobile devices */ @media (max-width: 768px) { .gradient-text { font-size: 68px; /* Adjust the font size as needed */ } } </style>