/* 1. Stealth Background */
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background: #000000; 
    color: white; 
    text-align: center; 
    padding: 80px 20px; 
    margin: 0;
}

/* 2. Central Column Control */
.box { 
    display: inline-block; 
    max-width: 650px; /* This keeps it from going full-width */
    width: 100%; 
    margin: 0 auto;
    text-align: center;
}

/* 3. Header - Pure White */
h1 { 
    color: #a020f0; /* Deep Purple */
    margin-bottom: 5px; 
    font-size: 3em; 
    letter-spacing: -1px;
}

.subtitle { color: #888; margin-bottom: 40px; display: block; }

/* 4. App Boxes - Tech Blue Headers */
.project-link { 
    display: block; 
    background: #1a1a1a; 
    padding: 20px; 
    margin: 15px 0; 
    border-radius: 10px; 
    border: 1px solid #333; 
    text-decoration: none; 
    text-align: left; /* Text stays left-aligned inside the centered box */
}

.app-title {
    color: #00d4ff; /* Tech Blue */
    font-size: 1.25em;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.app-desc {
    color: #ffffff; /* White description */
    font-size: 0.95em;
    line-height: 1.4;
}

/* 5. Contact Section - No Yellow Font */
.contact-section {
    margin-top: 80px;
}

.contact-label {
    color: #555; /* Neutral grey */
    font-size: 0.9em;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.email-img {
    display: block;
    margin: 20px auto;
    width: 60%;        
    max-width: 350px;  
}  
