Hacked By S4uD1Pwnz body { margin: 0; padding: 0; background-color: #000000; color: #ffffff; font-family: ‘Iceland’, sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; text-align: center; animation: flicker 2s ease-in-out 1; } img { max-width: 100%; height: auto; transform: scale(1.1); transition: transform 0.5s ease; } .container { max-width: 600px; padding: 1rem; margin: auto; } .title { font-size: 2.8rem; margin: 1rem 0; } .quote { font-size: 1.8rem; margin-top: 0.5rem; color: #ffffff; } a { color: #ffffff; text-decoration: none; } @media (max-width: 600px) { .title { font-size: 1.5rem; } .quote { font-size: 1rem; } } @keyframes flicker { 0% { opacity: 0; } 10% { opacity: 0.3; } 20% { opacity: 1; } 30% { opacity: 0.7; } 40% { opacity: 1; } 100% { opacity: 1; } }
S4uD1Pwnz Logo