.buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-content: center;
}

.buttons__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: var(--button-font-color, black);
  background: var(--button-bg-color, white);
  border-radius: 40px;
  padding: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.buttons__button-img {
  max-width: 60px;
  height: 60px;
  margin-right: 10px;
  margin-left: 10px;
}

.buttons__button-text {
  text-align: left;
}

.buttons__button:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
  .buttons__button-img {
    max-width: 80px;
    height: 80px;
  }

  .buttons {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
  }

  .buttons__button {
    width: calc(25% - 10px);
  }
}
