/* Full-page styling */
body {
    margin: 0;
    padding: 0;
    background-color: #00051e; /* Dark background */
    color: white;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

/* Main container */
.about-container {
    padding: 20px;
}

/* Title */
h1 {
    font-size: 3rem;
    font-weight: bold;
    color: red;
    text-shadow: 0 0 10px red, 0 0 20px darkred;
    text-transform: uppercase;
}

/* Section Headings */
h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffcc00; /* Bright yellow */
    margin-top: 20px;
}

/* General Text */
p, li {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #ffffff; /* White text */
}

/* Example Section */
.example {
    font-size: 1.3rem;
    color: #ffff33; /* Bright yellow */
    font-weight: bold;
}

/* Dead & Injured Highlight */
.dead { color: red; font-weight: bold; }
.injured { color: orange; font-weight: bold; }

/* Back to Home Button */
.back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: red;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 8px red;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover Effect */
.back-home:hover {
    background-color: darkred;
    box-shadow: 0 0 15px darkred;
}
