* {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	box-sizing: border-box;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 90vh;
	background-color: #6f83b3;
	position: fixed;
	width: 100vw;
}

.header {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.header h1 {
	text-align: center;
	margin-bottom: 7%;
}

.buttonmain {
	background-color: #79b8ff;
	border: 10;
	width: 250px;
	padding: 20px 0;
	border-radius: 55px;
	text-transform: uppercase;
	display: block;
	margin: 2% auto;
	color: #fff;
	cursor: pointer;
	transition: 0.1s linear;
	font-size: 20px;
	font-weight: 500;
      }
      @keyframes glowing {
      0% { background-color: #79b8ff;  }
      50% { background-color: #1695ff; }
      100% { background-color: #0068b5;}
      }
      .buttonmain {
      animation: shine 2s infinite linear;
      }

.button {
	background-color: #fcfeff;
	width: 250px;
  border: none;
	padding: 20px 0;
	border-radius: 55px;
	text-transform: uppercase;
	display: block;
	margin: 2% auto;
	color: #4a556f;
	cursor: pointer;
	transition: 0.1s linear;
	font-size: 20px;
	font-weight: 500;
}

.button:hover {
	background-color: #5e82cf;
}

@media screen and (max-width: 1024px) {
	.header {
		width: 80%;
	}

	.header h1 {
		margin-bottom: 15%;
	}
}

@media screen and (max-width: 500px) {
	.header {
		width: 95%;
	}

	.button {
		width: 80%;
	}
}

@media screen and (max-width: 375px) {
	.button {
		width: 100%;
		margin: 0 auto;
	}
}

@media screen and (max-height: 500px) {
	.header {
		height: 100vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

/* Стили для кнопки */
.glare-button {
  background-color: #fcfeff;
	width: 250px;
	padding: 20px 0;
  border: none;
	border-radius: 55px;
	text-transform: uppercase;
	display: block;
	margin: 2% auto;
	color: #576891;
	cursor: pointer;
	transition: 0.1s linear;
	font-size: 20px;
	font-weight: 500;
  background: linear-gradient(120deg, #275bca, #1a3e96); /* Градиентный фон кнопки для объемного эффекта */
  color: #fff; /* Белый цвет текста на кнопке */
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Добавляем тень для трехмерного эффекта */
}

/* Стили для создания блика на кнопке */
.glare-button:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%, /* Прозрачность начала блика */
    rgba(255, 255, 255, 0.8), /* Цвет блика */
    rgba(255, 255, 255, 0) 70% /* Прозрачность конца блика */
  );
  top: 0;
  left: -100px;
  animation: shine 2s infinite linear; /* Анимация блика */
}

/* Ключевые кадры для анимации блика */
@keyframes shine {
  0% {
    left: -100px; /* Начальная позиция блика (левая сторона кнопки) */
  }
  20% {
    left: 100%; /* Позиция блика в конце (правая сторона кнопки) */
  }
  100% {
    left: 100%; /* Завершение анимации */
  }
}

