css /* Procrastination Video Games CSS */ body { font-family: 'Bangers', cursive; background-color: #ff69b4; /* Bright Pink */ color: #000000; text-align: center; margin: 0 0 0 0; padding: 0 0 0 0; transition: opacity 0.3s; } /* Global Styles */ a { color: #ff0000; /* Bright Red */ text-decoration: none; font-weight: bold; font-size: 24px; text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5); } h1 { font-size: 48px; color: #000000; text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5); font-family: 'Bangers', cursive; text-align: center; margin: 0 0 20px 0; padding: 10px 0; border-bottom: 4px solid #000000; } h2 { font-size: 36px; color: #000000; text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5); font-family: 'Bangers', cursive; text-align: center; margin: 0 0 10px 0; padding: 5px 0; border-bottom: 2px solid #000000; } p { font-size: 18px; color: #000000; text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5); font-family: 'Bangers', cursive; margin: 0 0 0 0; padding: 10px 0; } /* Link Styles */ a:hover { color: #0000ff; /* Blue */ text-decoration: underline; font-weight: bolder; text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5); } a:active { color: #00ff00; /* Green */ text-decoration: none; font-weight: bolder; text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5); } a:visited { color: #0000FF; /* Dark Blue */ text-decoration: none; font-weight: bolder; text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5); }