/* Simple Cruelty Squad Style - Green on Black */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background-color: #000;
    background-image: url('/ribcage.png');
    background-size: auto;
    background-repeat: repeat;
    color: #00ff00;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0;
}

h1 {
    color: #00ff00;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: none;
}

nav {
    margin: 20px 0;
    font-size: 1.1rem;
}

nav a {
    color: #00ff00;
    text-decoration: none;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

.content {
    margin-top: 40px;
    font-size: 1rem;
    line-height: 1.6;
}

.content p {
    margin-bottom: 15px;
    color: #00ff00;
}