.slider-parent {
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
}
.slider-contents{
    display: inline-grid;
    width: 100%;
}

.menu-grid {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: left;
    margin-top: 20px;
    row-gap: 5px;
    column-gap: 5px;

}

.tile{
    width: 125px;
    height: 125px;
    margin: 2px;
    background-color: lightgray;
    text-align: center;
    line-height: 125px;
}

.selected-tile{
    background-color: #a4bb7c;
    border: solid 1px #495b2f;
  }