body {
	background-color: #161616;
  height: 100vh;
  margin: 0px;
}
h1 {
	position: relative;
	text-align: center;
	font-size: 50px;
	font-family: "Megrim", cursive;
	text-shadow: 0 0 5px #ff9aff, 0 0 10px #ff9aff, 0 0 20px #ff9aff,
		0 0 40px #ff9aff, 0 0 80px #ff9aff;
	color: white;
}
.frame {
	width: 100%;
	margin: 40px auto;
	text-align: center;
}
.custom-btn {
	color: #fff;
	width: 150px;
	height: 40px;
	padding: 10px 25px;
	font-family: "Lato", sans-serif;
	font-weight: 500;
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
}
button {
	margin: 20px;
}
.btn-15 {
	color: #ff9aff;
	border: 1px solid#ff9aff;
	box-shadow: 0 0 5px #ff9aff, 0 0 5px #ff9aff inset;
	z-index: 1;
}
.btn-15:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background: #ff9aff;
	box-shadow: 0 0 20px #ff9aff;
	transition: all 0.3s ease;
}
.btn-15:hover {
	color: #fff;
}
.btn-15:hover:after {
	left: 0;
	width: 100%;
}
.btn-15:active {
	top: 2px;
}

#main-container {
	display: grid;
	grid-template-columns: 1fr;
	height: 95vh;
	align-items: center;
	justify-items: center;
}