body, html {
	height: 100%;
	margin: 0;
}
.bg {
	background-image: url("../assets/img/background-3.webp");
	height: 100%; 
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.header {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 15rem;
    padding: 5rem 0 0 0;
}
.logo {
	width: 16rem;
	height: auto;
	margin-right: 15px;
}
.flex-container {
	display: flex;
	align-items: center;
}
.grid-container {
	display: grid;
	align-items: center;
}
.flex-container-centered {
	display: flex;
	justify-content: center;
	align-items: center;
}
.grid-container-centered {
	display: grid;
	justify-items: center;
	align-items: center;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70vh;
}
.heading {
	font-size: 3rem;
	color: #fff;
	text-align: center;
    margin: 6rem 0 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	font-weight: 700;
	text-transform: uppercase;
}
.mt-1 {
	margin-top: 1rem;
}
.mt-1-5 {
	margin-top: 1.5rem;
}
.mt-2 {
	margin-top: 2rem;
}
.mt-3 {
	margin-top: 3rem;
}
.maroon {
	background-color: maroon;
	color: white;
}
.absolute {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.custom {
	background-color: #470000;
	color: white;
	border: none;
	padding: 1rem 9rem;
	border-radius: 5px;
	cursor: pointer;
	font-size: 25px;
}
.btn.custom:hover {
	background-color: #002b00;
	border-color: #002b00;
}
.btn.custom.active.focus, .btn.custom.active:focus, .btn.custom.focus, .btn.custom:active.focus, .btn.custom:active:focus, .btn.custom:focus {
    outline: unset;
}
.swal2-confirm, .swal-button--confirm {
	background-color: #4CAF50;
}
.swal-button--confirm:not([disabled]):hover {
	background-color: #6bcb6f;
}
.swal-footer {
	text-align: center;
}
.swal-overlay--show-modal .swal-modal {
	background-color: rgb(0 0 0 / 40%);
}

.sparkle-animation {
  animation: sparkle 1s infinite alternate;
}
@keyframes sparkle {
	0% {
		box-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
					0 0 10px rgba(255, 255, 255, 0.3),
					0 0 15px rgba(255, 255, 255, 0.1);
	}
	100% {
		box-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
					0 0 20px rgba(255, 255, 255, 0.5),
					0 0 30px rgba(255, 255, 255, 0.2);
	}
}
.swal2-title {
	animation: sparkle 2s infinite alternate;
}
@keyframes sparkle {
	0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.7); }
	50% { text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 0.5); }
	100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.7); }
}
#canvas{
	width: 40rem;
	height: 40rem;
}
@media screen and (max-width: 480px) {
	.heading {
		margin: 4rem 0 0;
	}
	#canvas {
		width: 35rem;
		height: 35rem;
	}
	.btn.custom {
    	padding: 0.9rem 7rem;
	}
}
@media screen and (max-width: 380px) {
	#canvas {
		width: 33rem;
		height: 33rem;
	}
	.btn.custom {
    	padding: 0.8rem 5rem;
	}
}
@media screen and (max-width: 359px) {
	#canvas {
		width: 30rem;
		height: 30rem;
	}
	.btn.custom {
    	padding: 0.7rem 3rem;
	}

}@media screen and (max-width: 329px) {
	#canvas {
		width: 28rem;
		height: 28rem;
	}
	.btn.custom {
    	padding: 0.6rem 2rem;
		font-size: 22px;
	}
}
.container #canvas {
    position: relative;
    border-radius: 50%;
    box-shadow: 0 0 0 15px #fff;
}
.confetti {
	left: 0;
	pointer-events: none ;
	position: fixed;
	top: 0;
	transform: translate3d(0, 0, 0);
	will-change: transform;
	height: 100%;
	width: 100%;
}
.confetti-item {
	position: absolute;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}
@keyframes confetti-fall {
	0% {
		transform: translateY(-100%)
	}
	95%{
		animation-timing-function: ease-in-out;
		transform: translateY(calc(100vh - 55%))
	}
	100% {
		transform: translateY(calc(150vh - 65%))
	}
}
.wordart, .swal-modal {
	.preview, .swal-title:first-child {
		font-family: Impact, sans-serif;
		color: transparent;
		background: linear-gradient(to bottom left, #fee601, #fee601 15%, #fe4201);
		-webkit-text-fill-color: transparent;
		-webkit-background-clip: text;
		background-clip: text;
		letter-spacing: 3px;
		text-transform: uppercase;
		/* background-repeat: no-repeat;
		background-size: 80%;
		animation: animate 3s linear infinite;
		-webkit-text-fill-color: rgba(255, 255, 255, 0); */
	}
}
/* @keyframes animate {
	0% {
		background-position: -500%;
	}
	100% {
		background-position: 500%;
	}
} */
.neon-text, .swal-text {
    font-size: 25px;
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
}
@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}
/* .swal-button--confirm {
	min-width: 260px;
	min-height: 45px;
	display: inline-flex;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 1.3px;
	font-weight: 700;
	color: #313133;
	background: #4FD1C5;
	background: linear-gradient(90deg, rgba(129,230,217,1) 0%, rgba(79,209,197,1) 100%);
	border: none;
	border-radius: 1000px;
	box-shadow: 12px 12px 24px rgba(79,209,197,.64);
	transition: all 0.3s ease-in-out 0s;
	cursor: pointer;
	outline: none;
	position: relative;
	padding: 10px;
}
.swal-button--confirm::before {
	content: '';
	border-radius: 1000px;
	min-width: calc(260px + 12px);
	min-height: calc(45px + 12px);
	border: 6px solid #00FFCB;
	box-shadow: 0 0 60px rgba(0,255,203,.64);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all .3s ease-in-out 0s;
}
.swal-button.swal-button--confirm:hover, .swal-button.swal-button--confirm:focus {
	color: #313133;
	transform: translateY(-6px);
}
.swal-button.swal-button--confirm:hover::before, .swal-button.swal-button--confirm:focus::before {
  	opacity: 1;
}
.swal-button--confirm::after {
	content: '';
	width: 30px; height: 30px;
	border-radius: 100%;
	border: 6px solid #00FFCB;
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: ring 1.5s infinite;
}
.swal-button.swal-button--confirm:hover::after, .swal-button.swal-button--confirm:focus::after {
	animation: none;
	display: none;
}
@keyframes ring {
	0% {
		width: 30px;
		height: 30px;
		opacity: 1;
	}
	100% {
		width: 300px;
		height: 300px;
		opacity: 0;
	}
} */