.button {
  margin: auto;
  width: fit-content;
  min-width: 300px;
  padding: 16px 32px;
  display: block;
  border-radius: 10px;
  background: linear-gradient(180deg, #eda32d 32.5%, #d24c11 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);

  color: #fff;
  text-align: center;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.55);
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%; /* 28.8px */
  cursor: pointer;
  transition: opacity 0.25s ease-in;
}
.button:disabled {
  opacity: 0.5;
}
@media only screen and (max-width: 768px) {
  .button {
    width: 100%;
    min-width: 0;
    max-width: 280px;
    font-size: 16px;
  }
}
.image-button {
  margin: auto;
  display: block;
  width: 360px;
  height: auto;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .image-button {
    margin: auto;
    display: block;
    width: calc(360px * 0.8);
    height: auto;
    cursor: pointer;
  }
}

.button-aeon {
  background-image: url("/assets/aeon_cup/top/button-aeon-cb8dfa54.png");
  background-size: 100% 100%;
}
