/* Общие стили для страницы */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333; /* Темно-серый фон */
  font-family: 'Arial', sans-serif;
  /* overflow: hidden; */
  color: white; /* Явно указанный цвет текста */
}

/* .container {
  max-width: 300px;
  margin: 40px auto;
  padding: 20px;
  word-wrap: break-word;
} */

/* Контейнер для центрирования кнопки */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 100%;
  word-wrap: break-word;
}

.card {
  background-color: #222;
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  padding: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.qr-code {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  width: 100%;
  max-width: 70%;
  height: auto;

}

/* Стили для кнопки */
.button {
  display: inline-block;
  padding: 25px 60px; /* Большие отступы для крупной кнопки */
  text-align: center;
  text-decoration: none;
  color: #FFA500;
  /* background: #FFA500; /* Оранжевый фон */
  background: #333; /* Темно-серый фон */
  border-radius: 30px; /* Закругленные углы */
  border: solid;
  border-color: #FFA500;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Тень для объема */
  transition: all 0.3s ease-in-out; /* Плавная анимация */
}

#enter {
  padding: 25px 60px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
}

#donate {
  padding: 10px 24px;
  font-size: 14px;
}

#copy {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
  color: #FFA500;
  background: #333; /* Темно-серый фон */
  border-radius: 10px; /* Закругленные углы */
  border: solid;
  border-width: 1px;
  border-color: #FFA500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Тень для объема */
  /* transition: all 0.3s ease-in-out; /* Плавная анимация */
}

#copy:active {
  transform: scale(1.05);
  color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  background: #FFA500;
}

.button:active {
  transform: scale(1.05);
  color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  background: #FFA500;
}