/* Add Google Fonts */ @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap'); /* Reset some default styles */ body, h1, h2, p, ul, li, a { margin: 0; padding: 0; text-decoration: none; } body { font-family: 'Roboto', sans-serif; background: linear-gradient(to right, #0f2027, #203a43, #2c5364); color: white; } nav { background: linear-gradient(to right, #FF416C, #FF4B2B); /* Gradient Background */ box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1); /* Slight Shadow for Depth */ padding: 10px 0; /* Vertical Padding */ } nav ul { list-style-type: none; padding: 0; text-align: center; /* Center the navigation items */ } nav li { display: inline-block; margin: 0 15px; /* Spacing between items */ } nav a { color: white; padding: 10px 20px; border-radius: 25px; /* Rounded Edges */ transition: background-color 0.3s, transform 0.3s; /* Smooth Transition for Hover Effect */ font-weight: 600; /* Slightly Bold */ font-size: 16px; /* Adjust as needed */ } nav a:hover { background: rgba(255, 255, 255, 0.1); /* Slight White Background on Hover */ transform: translateY(-2px); /* Slight Lift on Hover */ } nav a:active { transform: translateY(1px); /* Slight Pressed-In effect on Click */ } header .banner { max-width: 100%; /* Ensures the image is never larger than its container */ height: 200; /* Maintains the aspect ratio */ display: block; /* Prevents inline default spacing */ margin: 0 auto; /* Centers the image within the header */ } header, main, footer { max-width: 800px; margin: 20px auto; padding: 20px; border: 1px solid white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); } header h1, section h2 { border-bottom: 1px solid white; margin-bottom: 10px; padding-bottom: 5px; } footer { text-align: center; } @media (max-width: 600px) { nav li { display: block; margin-right: 0; } } table { width: 100%; border-collapse: collapse; margin-top: 20px; } table, th, td { border: 1px solid white; border-radius: 5px; } th, td { padding: 10px; text-align: left; } th { background-color: #555; } tr:hover { background-color: #444; } .discord-logo { width: 50px; height: auto; margin-top: 10px; cursor: pointer; transition: opacity 0.3s, transform 0.3s; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); border-radius: 5px; } .discord-logo:hover { transform: scale(1.05); opacity: 0.8; } /* Hacker theme styles */ body { font-family: 'Courier New', monospace; background: #0f0f0f; /* Dark background for hacker aesthetic */ color: #33ff33; /* Bright green text, reminiscent of old terminals */ } /* Ensure elements scale well on mobile */ @media (max-width: 768px) { body { font-size: 14px; /* Adjust font size for mobile readability */ } /* Add additional mobile scaling styles as needed */ } /* Override other elements as needed for the hacker theme */ nav { background: #121212; /* Dark background for navigation */ border-bottom: 1px solid #33ff33; /* Bright green border for accent */ } /* Ensure links stand out */ a { color: #6699ff; /* Blue color for links */ text-decoration: underline; /* Underline links for better visibility */ } /* Specific button styles for .btn class to match the hacker theme */ .btn { font-family: 'Courier New', monospace; background: #222; /* Dark background for buttons */ color: #33ff33; /* Bright green text */ border: 1px solid #33ff33; /* Border to match text color */ padding: 10px 20px; text-transform: uppercase; transition: background-color 0.3s ease, color 0.3s ease; } .btn:hover { background: #33ff33; /* Bright green background on hover */ color: #000; /* Dark text on hover */ cursor: pointer; } /* Responsive button sizing for mobile for .btn class*/ @media (max-width: 768px) { .btn { padding: 8px 16px; font-size: 14px; /* Adjust font size for mobile readability */ } } .btn:active { transform: translateY(1px); /* Slight Pressed-In effect on Click */ }