css /* Leaf Sitting Styles */ body { background-image: linear-gradient(to bottom, #8b0a0a, #8b0a0a 50%, #ffcc00 50%, #ffcc00); background-size: 100px 200px; background-position: 50% 0; font-family: 'Bangers', cursive; font-size: 24px; line-height: 1.2; margin: 0 0 50px 0; } h1 { color: #ff0000; text-align: center; margin-bottom: 20px; border-bottom: 4px solid #000000; padding-bottom: 10px; border-radius: 0; } h2 { color: #33ccff; text-align: center; margin-top: 0; margin-bottom: 20px; padding: 10px 0; border-bottom: 4px solid #000000; border-top: none; border-radius: 0; } h3 { color: #ff0000; text-align: center; margin: 0 0 20px 0; padding: 10px 0; border-bottom: 4px solid #000000; border-top: none; border-radius: 0; } p { color: #333333; text-align: center; font-size: 18px; margin: 0 0 20px 0; padding: 20px 0; border-bottom: 4px solid #000000; border-radius: 0; box-shadow: 0 0 0 #000000; font-family: 'Bangers', cursive; word-wrap: break-word; } a { text-decoration: none; color: #333333; text-align: center; border-bottom: 4px solid #000000; border-top: 4px solid #ff0000; border-radius: 0 0 4px 4px; transition: all 0.2s ease-in-out; } a:hover { color: #ff0000; border-bottom: 4px solid #000000; border-top: 4px solid #ff0000; border-radius: 4px 4px 0 0; transition: all 0.2s ease-in-out; } body a:hover { background-color: #000000; color: #ff0000; border-radius: 0 0 0 4px; transition: all 0.2s ease-in-out; } #leaf { position: absolute; top: 50%; left: 50%; width: 200px; height: 100px; background-color: #8b0a0a; border: 4px solid #000000; border-radius: 4px 4px 4px 4px; box-shadow: 0 0 10px #000000; font-size: 18px; font-family: 'Bangers', cursive; color: #000000; text-align: center; line-height: 1.2; padding: 20px 0; z-index: 1; transform: rotate(45deg); transition: all 0.5s; } #leaf a { text-decoration: none; color: #333333; position: absolute; top: 50%; left: 50%; font-size: 18px; font-family: 'Bangers', cursive; transition: all 0.2s; } #leaf a:hover { color: #ff0000; text-shadow: 2px 2px 2px #000000; transition: all 0.2s; } #leaf a:active { color: #000000; text-shadow: none; transition: all 0.2s; } #leaf a:focus { color: #33ccff; text-shadow: 2px 2px 2px #000000; transition: all 0.2s; }