* {
    box-sizing:border-box;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}


.interact-button {
    font-family: Velasans, Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    min-width: 250px;
    min-height: 60px;
    display: block;
    margin: 0 auto;
    padding: 0 15px;
    border-radius: 20px;
    background: linear-gradient(0deg, #ffffff, #ffffff 100%);
    cursor: pointer;
    
}

.interact-button {
  position: relative;
  padding-right: 30px; /* отступ справа под иконку */
}

.interact-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-image: url('../icons/logo_gg.svg'); /* путь к твоей иконке */
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.interact-button:active {
  transform: translateY(2px); /* кнопка слегка вдавливается вниз */
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.2); /* тень уменьшается */
}


.promo {
    /* min-height: 963px;
    background: url('../img/background.png') center center / cover no-repeat; */
    height: 100vh; /* Чтобы секция занимала всю высоту экрана */
  background: url('../img/background.png') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center; /* Горизонтальное центрирование */
  align-items: center;     /* Вертикальное центрирование */
}