body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #f4f4f4; color: #333; }
header { background: #333; color: white; padding: 20px; text-align: center; }
nav a { color: white; margin: 0 15px; text-decoration: none; }
main { padding: 20px; max-width: 800px; margin: auto; background: white; }
footer { text-align: center; padding: 10px; background: #333; color: white;margin-top: 100px; }
form { display: flex; flex-direction: column; gap: 10px; }
input, textarea, button { padding: 10px; font-size: 16px; }
button { background: #333; color: white; border: none; cursor: pointer; }
button:hover { background: #555; }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

header h1 {
    margin-bottom: 10px;
}

.post-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    max-height: 400px;
    object-fit: cover;
}

.post-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.profile-image {
    width: 100%;
    height: 300px;
    /* border-radius: 50%; */
    object-fit: cover;
    display: block;
    margin: 0 auto 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#about-section {
    text-align: center;
}

ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.post-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.full-content img {
    width: 100%;
    border-radius: 8px;
    margin: 15px 0;
}

details {
    margin-top: 15px;
}

summary {
    cursor: pointer;
    font-weight: bold;
    color: #333;
}


#posts-list { display: grid; gap: 20px; }
.post-card { border: 1px solid #ddd; padding: 15px; border-radius: 8px; }
.post-card h3 { margin: 0; }
@media (max-width: 600px) { nav a { display: block; margin: 10px 0; } }
