/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #b2b2b7;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Headings */
h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
}

h2 {
    color: #34495e;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2em;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

h3 {
    color: #2980b9;
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Paragraphs */
p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Blog posts list */
ul {
    list-style: none;
    padding: 0;
}

li {
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

li:hover {
    transform: translateY(-5px);
}

li p {
    font-size: 1em;
    color: #555;
}

/* Responsive design */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.5em;
    }
    li {
        padding: 15px;
    }
}