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

/* BASE STYLES - WHITE VERSION */
body {
    font-family: 'Courier New', monospace;
    background: #FFF;
    color: #000;
    padding: 40px;
    line-height: 1.6;
}

body.loaded {
    opacity: 1;
}

/* LINKS */
a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* LAYOUT */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section {
    margin-bottom: 0px;
}

.left-col {
    position: relative;
}

.right-col {
    position: relative;
}

.section-title {
    margin-bottom: 15px;
    font-size: 0.85em;
    opacity: 0.6;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* CONTENT STYLES */
.content-text {
    font-size: 0.95em;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 650px;
    margin-bottom: 20px;
}

.status-line {
    font-size: 0.95em;
    margin: 8px 0;
}

.output-item {
    margin: 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.output-item:last-child {
    border-bottom: none;
}

.output-title {
    font-size: 1em;
    margin-bottom: 5px;
}

.output-meta {
    font-size: 0.85em;
    opacity: 0.6;
}

.update-line {
    margin: 8px 0;
    font-size: 0.85em;
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    body {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }
}
