css /* style.css */ body { background-color: #f0f0f0; font-family: 'Bungee 8'; font-size: 16px; line-height: 1.5; color: #000; margin: 0; padding: 0; } h1 { font-size: 32px; text-align: center; margin-bottom: 10px; } h2 { font-size: 24px; text-align: center; margin-bottom: 10px; } p { font-size: 16px; text-align: center; margin-bottom: 10px; } /* Add some flair to the page */ body::after { content: ""; position: relative; background-image: linear-gradient(to bottom, #ff0000, #00ff00, #0000ff); background-size: 100% 100px; background-position: 0 0; width: 100%; height: 100px; z-index: 1; } /* Add a border around everything */ * { border: 4px solid #333; box-sizing: border-box; box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; } /* Add some hover effects */ a { text-decoration: none; color: #fff; background-color: #333; border: 1px solid #333; padding: 5px 10px; border-radius: 5px 20px; transition: all 0.2s ease-in-out; } a:hover { background-color: #555; border-color: #555; color: #fff; cursor: pointer; } /* Add some hover effects to links */ a:hover { background-color: #555; border-color: #555; color: #fff; cursor: pointer; } /* Style for links inside the main content */ a:link { color: #fff; text-decoration: none; background-color: #333; border: 1px solid #333; padding: 5px 10px; border-radius: 5px 20px; transition: all 0.2s ease-in-out; } /* Style for links that are visited */ a:visited { color: #fff; text-decoration: none; background-color: #333; border: 1px solid #333; padding: 5px 10px; border-radius: 5px 20px; transition: all 0.2s ease-in-out; } /* Style for links that are active */ a:active { color: #fff; text-decoration: none; background-color: #333; border: 1px solid #333; padding: 5px 10px; border-radius: 5px 20px; transition: all 0.2s ease-in-out; }