body {
    font-family: 'VT323', monospace;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: transparent;
    z-index: 1000;
    padding: 15px 20px;
    box-sizing: border-box;
}

.container {
    max-width: 600px;
    margin: 80px auto 40px auto;
    padding: 20px;
}

header {
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0;
}

.subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
    margin-bottom: 10px;
}

.terminal-link {
    font-size: 0.9rem;
    font-family: 'VT323', monospace;
    color: #888;
    text-decoration: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 1001;
}

.terminal-link:hover {
    color: #000;
    background-color: #eee;
    text-decoration: none;
}

h2 {
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-top: 40px;
}

section {
    margin-bottom: 30px;
    font-size: 0.8rem;
}

.entry {
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.entry h3 {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

footer p {
    display: inline-block;
    margin: 0 15px;
} 