.big-button-parent-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  gap: 1em;
}

.big-button-div {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.big-button {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  border: none;
  color: white;
  font-family: Avenir, Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  background: var(--btn-color, red);
  text-shadow: 0 3px 1px rgba(0, 0, 0, 0.4);
  box-shadow:
    0 8px 0 var(--btn-shadow-color, rgb(183, 9, 0)),
    0 15px 20px rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
  transition: 0.4s all ease-in;
  outline: none;
  cursor: pointer;
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
button span {
  position: relative;
}
/* fix for IE 11 (and IE8+, although the earlier versions are harder to address) stupidly moving the inner button text on click */
.pressed {
  padding-top: 3px;
  transform: translateY(4px);
  box-shadow:
    0 4px 0 var(--btn-shadow-pressed-color, rgb(183, 0, 0)),
    0 8px 6px rgba(0, 0, 0, 0.45);
}
.big-button-label-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.big-button-label {
  font-size: 15px;
  text-align: center;
  margin: 0;
}
.thumbnail{
  width: 100px;
  height: 100px;
  object-fit: cover;
}