body {
    background-color: #121212; 
    margin: 0;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ffffff;
}

.container {
    max-width: 900px;
    padding: 40px;
    background-color: #1e1e1e; 
    border-radius: 8px;
}

.container img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem auto;
}

.post-list { list-style:none; padding:0; margin:0; }
.post-list li { display:flex; align-items:center; gap:1rem; padding:.5rem 0; border-bottom:1px solid #333; }
.post-list li img { width:120px; height:auto; flex-shrink:0; border-radius:4px; }
@media (max-width:480px) {
    .post-list li { flex-direction:column; align-items:flex-start; }
    .post-list li img { width:100%; max-width:250px; }
}

a {
    color: #4db6ac;
    text-decoration: none;
    margin: 0 10px;
}

a:hover {
    text-decoration: underline;
    color: #ffffff;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .container { padding: 20px; width: 95%; }
}
