/* rainbreaw/style.css */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}

header {
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header h1 a {
    text-decoration: none;
    color: #000;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: bold;
}

nav a:hover {
    color: #000;
}

.container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

main h2 {
    color: #222;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

aside h3 {
    font-size: 1.2em;
    margin-top: 0;
}

.sidebar-section {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #888;
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}
