body{
margin:0;
padding:0;
font-family:Arial, sans-serif;
background:linear-gradient(135deg,#ff8a8a,#ffb347);
color:white;
}

.blog-container{
max-width:900px;
margin:auto;
padding:20px;
}

h1{
font-size:42px;
text-align:center;
margin-top:20px;
}

h3{
text-align:center;
font-weight:normal;
margin-bottom:40px;
}

.gallery{
display:flex;
gap:10px;
overflow-x:auto;
margin-bottom:30px;
}

.gallery img{
width:280px;
border-radius:20px;
box-shadow:0 0 15px rgba(0,0,0,0.3);
}

.post{
background:rgba(255,255,255,0.15);
padding:25px;
border-radius:25px;
backdrop-filter:blur(10px);
}

.author{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.author img{
width:80px;
height:80px;
border-radius:50%;
object-fit:cover;
}

p{
font-size:20px;
line-height:1.8;
}