/* Simple plain website with monospace fonts */

/* Import monospace fonts */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&family=Source+Code+Pro:wght@400;600;700&display=swap');

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

/* Typography */
body {
    font-family: 'JetBrains Mono', 'Source Code Pro', 'Courier New', monospace;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}



/* Header */
.header-content {
    display: flex;
    align-items: flex-end;
    gap: 0;
    margin-bottom: 5px;
}

.header-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.header-content h1 {
    margin: 0;
    line-height: 1;
    font-size: 64px;
    height: 64px;
    display: flex;
    align-items: center;
}



/* Headers */
h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

h2 {
    font-size: 1.8em;
    font-weight: bold;
    margin: 30px 0 15px 0;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

h3 {
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0 10px 0;
    color: #000;
}

/* Navigation */
nav {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

nav a {
    color: #0066cc;
    text-decoration: none;
    margin: 0 10px;
}

nav a:hover {
    text-decoration: underline;
}

/* Content */
p {
    margin-bottom: 15px;
}

ul {
    margin: 15px 0;
    padding-left: 30px;
}

li {
    margin-bottom: 8px;
}

/* Features section styling */
#features {
    background: #000;
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

#features h2 {
    color: #fff;
    border-bottom: 2px solid #fff;
}

#features ul {
    color: #fff;
}

#features li {
    color: #fff;
    margin-bottom: 16px;
}

#features strong {
    color: #fff;
}

/* About section styling */
#about {
    background: #f5f5f5;
    color: #333;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid #ddd;
}

#about h2 {
    color: #333;
    border-bottom: 2px solid #333;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Hero section */
#hero {
    text-align: center;
    margin: 30px 0;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

/* Screenshots */
.screenshots {
    margin: 20px 0;
}

figure {
    margin: 20px 0;
    text-align: center;
}

figure img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
}

figcaption {
    margin-top: 10px;
    font-weight: bold;
}

/* Footer */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    text-align: center;
    color: #666;
}

footer p {
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 15px;
        font-size: 14px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    nav a {
        display: block;
        margin: 5px 0;
    }
}
