body { background-color: black; color: grey; font-family: 'Courier New', monospace; font-size: 30px; animation: flicker 1s infinite alternate; } @keyframes flicker { from { opacity: 1; } to { opacity: 0.7; } } #title { font-size: 100px; color: red; text-align: center; margin-top: 100px; } #buttons { display: flex; justify-content: center; margin-top: 50px; } .button { background-color: gold; color: black; border: none; padding: 10px 20px; font-size: 20px; margin: 0 10px; cursor: pointer; transition: background-color 0.3s ease; } .button:hover { background-color: yellow; }