css /* CSS for the Cookie Muncher Disclaimer Page */ body { background-color: #f0f0f0; color: #000000; font-family: "Arial", sans-serif; font-size: 12px; margin: 0; padding: 0; border: 0; box-sizing: border-box; } .cookie-muncher-disclaimer { background-color: #ffcc00; border: 8px solid #000000; padding: 20px 20px 20px 20px; margin: 20px 20px 20px 20px; box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5); text-align: center; font-family: "Arial", sans-serif; font-size: 18px; width: 80%; position: relative; left: 50%; transform: translate(-50%, 0); } .cookie-muncher-disclaimer h1 { font-weight: bold; font-size: 24px; margin: 0 0 10px 0; padding: 0 0 10px 0; border-bottom: 4px solid #000000; } .cookie-muncher-disclaimer p { font-size: 14px; margin: 0 0 0 0; padding: 10px 0 10px 0; line-height: 18px; } .cookie-muncher-disclaimer a { text-decoration: none; color: #333; font-size: 14px; margin: 10px 0 0 0; padding: 10px 10px 10px 10px; background-color: #ccc; border: 1px solid #aaa; border-radius: 10px; text-align: center; cursor: pointer; } .cookie-muncher-disclaimer a:hover { background-color: #ccc; border: 1px solid #aaa; border-radius: 10px; text-decoration: none; } /* Subpage links */ .subpage-links { list-style: none; margin: 0; padding: 0; text-align: center; font-size: 12px; font-weight: normal; font-family: "Arial", sans-serif; list-style-position: inside; } .subpage-links li { padding: 0 0 10px 0; margin: 0 0 0 0; display: inline-block; text-align: center; background-color: #f0f0f0; border-bottom: 1px solid #000000; width: 100%; position: relative; top: 20px; left: 0; transition: width 0.5s ease-in-out; } .subpage-links a { text-decoration: none; color: #333; font-size: 12px; margin: 10px 0 0 0; padding: 10px 10px 10px 10px; background-color: #ccc; border: 1px solid #aaa; border-radius: 10px; text-align: center; cursor: pointer; transition: background-color 0.5s ease-in-out; } .subpage-links a:hover { background-color: #ccc; border: 1px solid #aaa; border-radius: 10px; text-decoration: none; } /* Responsive design */ @media (max-width: 600px) { .cookie-muncher-disclaimer { width: 100%; left: 0; } .subpage-links { display: none; } }