.onion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    width:96%;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    margin-top:2rem;
    margin-bottom:2rem;
}
  
.onion-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;   /* square ratio; change to 4/3, 16/9, etc. */
    object-fit: cover;     /* ensures the image fills the box */
    border-radius: 0.5rem;
    display: block;
}  

#onion-grid-header{
    margin-top:2rem;
}

#download-button{
    margin-bottom:2rem;
}