body {
    background-color: black;
    color: white;
    font-family: 'Courier New', Courier, monospace;
}

article {
    padding: 5rem 1.5rem 1.5rem; 
}

.container {
    padding: 5rem 1.5rem 1.5rem; 
}

.terminal {
    max-width: 800px;
    padding: 2rem;
    background-color: black;
}

.prompt {
    display: flex;
    align-items: center;
}

.prompt span::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 20px;
    background-color: white;
    margin-left: 5px;
    animation: blink 1s step-start infinite;
}

@keyframes blink {
50% { opacity: 0; }
}

.intro {
    margin-top: 1rem;
}

h1 {
    margin: 0;
    font-size: 1.5rem;
}


/* Navigation bar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 0.75rem 1.5rem;
    position: fixed;       /* Keeps it at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

ul.nav-links {
    list-style-type: none;
    list-style: none;
    display: flex;
    gap: 1rem;
}

ul.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    transition: background-color 0.3s;
}

ul.nav-links a:hover {
    background-color: #555;
    border-radius: 4px;
}

li.nav-item {
    padding: 5px;
}


/* Blog post list styles */
select {
    padding: 6px 10px;
    font-size: 1rem;
}

ul.post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.post-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
ul.post-list li a {
    font-weight: 600;
    color: white;
    text-decoration: none;
}
ul.post-list li a:hover {
    text-decoration: underline;
}
div.meta {
    font-size: 0.9rem;
    color: white;
}
