<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* header.css - Header specific styles */
.site-header {
    background-color: #333;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title-text {
    height: 50px;
    display: flex;
    align-items: center;
}

.site-title-text a {
    font-family: 'Audiowide', cursive;
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
}
</pre></body></html>