.box {
    background-color: cornflowerblue;
    border: solid 1px;
    border-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

#grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 100px;
    gap: 10px;
}