body {
    background-color: #000;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Verdana, sans-serif;
}

.site-container {
    width: 800px;
    margin: 0 auto;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    box-shadow: 0 0 30px rgba(136, 0, 0, 0.3);
}

.top-nav {
    background: #111;
    background: -ms-linear-gradient(top, #222 0%, #000 100%);
    background: linear-gradient(to bottom, #222 0%, #000 100%);
    border-bottom: 1px solid #444;
    height: 35px;
}

.nav-inner {
    padding: 0 20px;
}

.top-nav a {
    display: inline-block;
    padding: 10px 15px;
    color: #888;
    text-decoration: none;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.top-nav a:hover {
    color: #fff;
    background: rgba(255, 0, 0, 0.1);
}

.top-nav a.active {
    color: #fff;
    background: #800;
    border-bottom: 2px solid #f00;
}

.main-header {
    background: #800;
    background: -ms-linear-gradient(top, #b00 0%, #800 50%, #600 51%, #800 100%);
    background: linear-gradient(to bottom, #b00 0%, #800 50%, #600 51%, #800 100%);
    padding: 40px 30px;
    border-bottom: 4px solid #000;
}

.main-header h1 {
    margin: 0;
    font-family: sans-serif;
    font-size: 52px;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0px #000;
}

.tagline {
    color: #f99;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-top: 5px;
}

.main-content {
    background-color: #fff;
    padding: 40px;
    min-height: 500px;
}

h2 {
    font-size: 24px;
    color: #800;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

p {
    font-size: 13px;
    line-height: 1.7;
    color: #333;
}

.project-strip {
    margin-top: 25px;
    border: 1px solid #ccc;
}

.strip-head {
    background: #333;
    background: -ms-linear-gradient(top, #444 0%, #222 100%);
    background: linear-gradient(to bottom, #444 0%, #222 100%);
    color: #fff;
    padding: 8px 15px;
    font-size: 11px;
    font-weight: bold;
    border-bottom: 1px solid #000;
}

.strip-body {
    padding: 15px;
    font-size: 12px;
    color: #444;
}

.site-footer {
    background: #000;
    color: #555;
    text-align: center;
    padding: 20px;
    font-size: 9px;
    border-top: 1px solid #222;
}