
/* Button background */
.button_image {
  position: relative;
  text-align: center;
}

/* Button1 text (centered) */
.button1_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Comic Sans MS", Arial;
  font-weight: bold;
  font-size: 22px;
  white-space: nowrap;
  text-decoration: none;
}

/* Button1 text (disabled) */
.button1_text_disabled {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Comic Sans MS", Arial;
  font-weight: bold;
  font-size: 22px;
  white-space: nowrap;
  text-decoration: none;
  color: #707070;
}

/* Button2 text (centered) */
.button2_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Comic Sans MS", Arial;
  font-weight: normal;
  font-size: 16px;
  white-space: nowrap;
  text-decoration: none;
}

/* Button2 text (disabled) */
.button2_text_disabled {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Comic Sans MS", Arial;
  font-weight: normal;
  font-size: 16px;
  white-space: nowrap;
  text-decoration: none;
  color: #606060;
}
