/* ----- Social buttons ----- */

#socialButtonsLauncher {
  display: flex;
  flex-direction: column;
  gap: 4vh;
  align-items: center;
  aspect-ratio: 1 / 0.9;
  margin-bottom: 5%;
}

/* Button types */

.twoButtonRow {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  width: 95%;
  height: 47.5%;
}

.tileButtonsSqaure {
  width: 45%;
  /* aspect-ratio: 1 / 1; */
  border: none;
  height: 100%;
}

.tileButtonsWide {
  width: 95%;
  /* aspect-ratio: 2 / 1; */
  border: none;
  height: 47.5%;
}

.tileButtons {
  scale: 1;
  transition: all;
  transition-duration: 0.8s;

  box-shadow: none;
  cursor: pointer;
}

.tileButtons:hover {
  scale: 1.1;
  box-shadow: 0 0 5vw rgba(0, 0, 0, 0.2);
}

.tileButtons:active {
  scale: 0.95;
  transition-duration: 0.2s;
  box-shadow: 0 0 2vw rgba(0, 0, 0, 0.2);
}

/* Buttons sub-elements */

.tileButtonIcon {
  width: 39%;
  height: 39%;
  object-fit: contain;
}

.tileButtonLabel {
  color: white;
  font-weight: 600;
  font-size: large;
  margin: 0;
  position: absolute;
  left: 8%;
  bottom: 5%;
}

.socialButtonX {
  background-color: black;
}