body {
  /* Внимание: цвет близок к белому, проверять на разных экранах! */
   background-color: #392f5a;
  }
/* main test */
.main-text {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items:  center;
  text-align: center;
  color: #fefadc;
  font-size: min(125px, 20vh);
  font-family: "Czizh Wing";;
  font-weight: bold;
 }

 .container {
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px;
  gap:50px;
  overflow: hidden;
 }

 .item-one {
  text-align: center;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 450px; /* Максимальная ширина */
  min-width: 280px; /* Минимальная ширина */
  min-height: 450px;
  max-height: 500px;
  background-color: #fefadc;
  border-radius: 20px;
  flex-direction: column;
  flex: 1 1 350px; /* Гибкое растягивание/сжатие с базой 300px */
  margin: 10px; /* Отступы для лучшего отображения */
 }

 .item-one h1 {
  font-weight: bolder;
  color: #392f5a;
  font-size: 40px;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  font-family: "Czizh Wing";;
 }

 .card-text {
  color: #392f5a;
  line-height: 1.5;
  text-align: center;
  font-size: 15px;
  padding: 10px;
  font-family: inter;
  
 }

 button {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto; /* Прижимаем кнопку к низу */
  margin-bottom: 20px; /* Добавляем отступ снизу */
  width: 80%; /* Делаем ширину относительной */
  max-width: 350px; /* Но не больше 350px */
  min-height: 50px;
  border-radius: 100px;
  border: 2px solid #392f5a; /* Лучше явно указать border */
  background-color: #392f5a;
  align-self: center;
  cursor: pointer; /* Добавляем указатель при наведении */
  transition: all 0.3s ease; /* Плавные анимации */
}

.buttext {
  font-family: inter;
  color: #fefadc;
}

button:hover {
  border-color: red;
  width: 250px;
}

