.feed-container{
  max-width:1200px;
  margin:auto;
}

#posts{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
  margin-bottom: 0px !important;
}

.post img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:6px;
}

.post{
  aspect-ratio:1/1;
  overflow:hidden;
  margin-bottom: 0px !important;
}

.buttons{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:10px;
}

@media (max-width:900px){
#posts{
grid-template-columns:repeat(3,1fr);
}
}

@media (max-width:600px){
#posts{
grid-template-columns:repeat(2,1fr);
}
}