html,
body {
	-webkit-user-select: none;
	width: 100%;
	height: 100%;
	background-color: #080C10;
}

a,
button,
input,
optgroup,
select,
textarea,
div {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 500px;
	overflow: scroll;
}

.main .main__top {
  /* height: 137px; */
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.main .main__top .main__top--img {
  /* height: 83.06px;
  width: 253.5px; */
	margin: 0 auto 70px;
}

.main .main__top .main__top--img img {
	height: 100%;
	width: 100%;
}

.main .main__top .main__top--title {
	width: 100%;
	text-align: center;
}

.main .main__top .main__top--title h1 {
	font-size: 23px;
	margin: 0 0 7px 0;
}

.main .main__top .main__top--title small {
	font-size: 12px;
	color: #666;
}

.main .main__middle {
	width: 250px;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
	border-top: 1px solid #e6e6e6;
}

.main .main__middle p {
	font-size: 13px;
	line-height: 140%;
	color: #999;
	margin: 0;
}

.main .main__bottom {
	width: 165px;
	margin: 0 auto;
}

.main .main__bottom .main__bottom--button {
	text-decoration: none;
	height: 45px;
	width: 100%;
	-webkit-appearance: none;
	border: 1px solid #e5e5e5;
	background-color: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	outline: 0;
	margin-bottom: 15px;
}

.main .main__bottom .main__bottom--button:active {
	background: #eee;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.main .main__bottom .main__bottom--button:nth-child(1) {
	margin-bottom: 15px;
}

.main .main__bottom .main__bottom--button img {
	height: 25px;
	width: 25px;
	margin-right: 8px;
}

.main .main__bottom .main__bottom--button span {
	line-height: 120%;
	color: #fff;
}

.radial-gradient {
	background-color: #40403c;
	background-image: radial-gradient(closest-side, rgb(30 30 30), rgba(235, 105, 78, 0)), radial-gradient(closest-side, rgb(6 26 22), rgba(243, 11, 164, 0)), radial-gradient(closest-side, rgb(14 28 5), rgba(254, 234, 131, 0)), radial-gradient(closest-side, rgb(46 42 37), rgba(170, 142, 245, 0));
	background-size: 130vw 130vh, 120vw 120vh, 100vw 150vh, 120vw 130vh;
	background-position: -80vw -80vh, 30vw -20vh, -20vw 20vh, 30vw 20vh;
	background-repeat: no-repeat;
	animation: 15s moiveAnimation infinite;
}

@keyframes moiveAnimation {
	0%,
            100% {
		background-size: 130vw 130vh, 120vw 120vh, 100vw 150vh, 120vw 130vh;
		background-position: -80vw -80vh, 30vw -20vh, -20vw 20vh, 30vw 20vh;
	}

	25% {
		background-size: 120vw 120vh, 130vw 150vh, 130vw 120vh, 100vw 110vh;
		background-position: -30vw -30vh, 40vw -10vh, 0vw 10vh, -10vw 20vh;
	}

	50% {
		background-size: 130vw 130vh, 140vw 100vh, 100vw 150vh, 90vw 110vh;
		background-position: 10vw -60vh, 20vw 10vh, 10vw 30vh, 10vw -20vh;
	}

	75% {
		background-size: 140vw 140vh, 100vw 130vh, 100vw 150vh, 130vw 110vh;
		background-position: -70vw -70vh, 0vw -10vh, 30vw -20vh, 20vw 30vh;
	}
}