﻿/* skylight.css - A light blue theme */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #2c3e50;
    background-color: #f5f7fa;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

    a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

h1, h2, h3 {
    color: #2c3e50;
}

h1 {
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.post {
    background-color: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.date {
    color: #7f8c8d;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
    color: #3498db;
}

footer {
    margin-top: 40px;
    color: #7f8c8d;
    font-size: 0.9em;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}
