button.index-button {
    display: flex;
    flex-direction: column;  /* Stack items vertically */
    align-items: center;     /* Center-align items horizontally */
    justify-content: center; /* Center-align items vertically */
    text-align: center;
    height: 170px;
    width: 160px;
    background-color: #0088CE;
    color: #FFFFFF;
    border: none;
    font-weight: bold;
    font-size: 17px;
    margin: 5px;
    background-image: none;
    background-position: center bottom;
    background-repeat: no-repeat;
    white-space: normal;
    padding: 10px;
}

.index-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
button.index-button {
    /* existing styles here */
    cursor: pointer; /* this line changes the cursor to pointer */
    justify-content: space-between;
    /*background-color: transparent;*/
}

button.index-button:hover {
    cursor: pointer; /* this line changes the cursor to pointer on hover */
}
.index-button-text {
    margin-top: 0px; /* adjust this as needed */
}
.index-button-image {
    margin-bottom: 0px; /* adjust as needed */
}