@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap&subset=cyrillic');

body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #000; 
}

#particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1; 
}

.container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	text-align: center;
	background: rgba(0, 0, 0, 0.5); 
	padding: 20px;
	border-radius: 10px;
	min-width: 350px;
	max-width: 400px;
}

h1 {
	margin-bottom: 20px;
	font-size: 1.6em;
	color: #fff;
	font-family: 'Roboto', sans-serif;
}
b {
  background: linear-gradient(45deg, #ff6b6b, #f9ca24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2em;
}

p {
  padding: 40px 20px;
  margin-bottom: 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9em;
  font-weight: 300; 
  color: #fff;
  line-height: 1.6; 
  text-align: justify; 
}

form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.glow-container {
	position: relative;
	display: inline-block;
	z-index: 2;
}

#uploadCanvas {
	cursor: pointer;
	display: block;
}

.message {
	margin-top: 30px;
	font-size: 1em;
	color: #fff;
	text-align: center; 
	font-family: 'Roboto', sans-serif;
}

.btn-epic {
	display: inline-block;
	padding: 15px 20px;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(45deg, #ff6ec4, #7873f5, #3cfeff);
	background-size: 300% 300%;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: gradient 5s ease infinite;
	transition: box-shadow 0.3s ease;
}

.btn-epic:hover {
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}
@keyframes gradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}




.btn-epic-done {
	display: inline-block;
	padding: 15px 20px;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(45deg, #37c102, #00ef14, #204101);
	background-size: 300% 300%;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: gradient 5s ease infinite;
	transition: box-shadow 0.3s ease;
}


.fw-lighter{
	font-weight: lighter;
}



.mb-3 {
	margin-bottom: 1rem;
}
.fw-lighter {
	font-weight: 300;
}
.text-success {
	color: rgb(100, 255, 100);
}
.text-danger {
	color: rgb(230, 66, 66);
}
.text-info {
	color: rgb(117, 117, 255);
}
@keyframes dots {
	0% { content: ""; }
	33% { content: "."; }
	66% { content: ".."; }
	100% { content: "..."; }
}
.loading::after {
	content: "";
	animation: dots 1s steps(3, end) infinite;
}
