/* * Pentester Nepal CTF Style Sheet
 * Author: PR4N4Y N1DH1
    * Date: 2025-08-16
*/

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 200px auto;
    padding: 20px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    border-radius: 8px;
}

h1 {
    font-size: 2.5em;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

footer {
    width: 100%;
    padding: 20px;
    background-color: #1a1a1a;
    border-top: 1px solid #3a3a3a;
    color: #999;
    font-size: 0.9em;
    margin-top: auto;
}