CoolFace
Apppublic

cccc45/transforma-o-dourada

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
style.css43 linesDownload Raw Back to root
1@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');2body {3    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;4    line-height: 1.6;5}6.hero {7    position: relative;8    min-height: 100vh;9    display: flex;10    align-items: center;11    justify-content: center;12    padding: 3rem 1rem;13    overflow: hidden;14    background: linear-gradient(rgba(250,247,240,0.7), rgba(250,247,240,0.5), rgba(250,247,240,0.8)),15                url('https://huggingface.co/spaces/cccc45/transforma-o-dourada/resolve/main/images/ChatGPT%20Image%20Dec%2023,%202025,%2008_47_35%20PM.png') center/cover;16}17.hero-content {18    position: relative;19    z-index: 10;20    max-width: 56rem;21    text-align: center;22}23img {24    max-width: 100%;25    height: auto;26}27 28.italic {29    font-style: italic;30}31/* Animation for the price box */32@keyframes pulse-soft {33    0%, 100% {34        opacity: 1;35    }36    50% {37        opacity: 0.9;38    }39}40 41.animate-pulse-soft {42    animation: pulse-soft 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;43}