.grid-display-wrapper { /*Includes container and any relevant divs for the display*/
    text-align: center;
    padding: 0px;
    height: 100%;

    display: flex;
    flex-direction: column;
}

.grid-display-wrapper * {
    text-align: inherit;
}

.grid-display-container { /*Includes grid content*/
    flex: 1 1 auto;
    height: 100px;
    overflow-y: auto;
}

.grid-display-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, 200px);
    background-color: #3E3E3E;
    justify-content: center;
    grid-gap: 15px;
}