/* mov #6000ea
albastru #2863ff 
*/
html, body {
	height: 100%;
	overflow: hidden;
	margin: 0;
}
body * {
	font-family: Montserrat,Arial,Helvetica,sans-serif;
}
.underCCont {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
}
.underCBanner {
	width: 1100px;
	height: 1100px;
	border-radius: 50%;
	/*background-color: #6000ea;*/
	background: linear-gradient(#6000ea, #4900b1);
	box-shadow: 0 0 20px rgba(96,0,234,.5), 0 0 4px rgba(73,0,177,.7);
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
	flex-direction: column;
	z-index: 5;
}
.circle1, .circle2 {
	width: 1200px;
	height: 1200px;
	border-width: 5px;
	border-color: linear-gradient(#6000ea, #4900b1);
	background: transparent; 
	box-shadow: 0 0 20px rgba(96,0,234,.15), 0 0 4px rgba(73,0,177,.2);
	position: absolute;
	z-index: 2;
}
/* .circle1 {
	animation: animation 5s;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
} */
.underCBanner * {
	color: white;
}
.logo {
	height: 200px;
	width: 200px;
	background-color: white;
	border-radius: 50%;
	padding: 10px;
	box-shadow: inset 0 0 8px 0px rgba(0,0,0,.7);
}
.underCBanner h1 {
	font-size: calc(30px + (60 - 30) * ((100vw - 300px) / (1600 - 300)));
	width: 100%;
	text-align: center;
	font-weight: 200;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2), 1.5px 1.5px 3px rgba(0,0,0,0.3);
	animation: animation 1s infinite;
}
.infoText p {
	font-size: calc(18px + (25 - 18) * ((100vw - 300px) / (1600 - 300)));
	margin-bottom: 0;
	text-align: center;
}
.infoText ul {
	font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1600 - 300)));
	margin: 15px;
}
.infoText ul li {
	margin-bottom: 5px;
	font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1600 - 300)));
	list-style: disclosure-closed;
	text-align: center;
}
.firstPic, .secondPic {
	height: 100%;
	width: 50%; 
	position: absolute;
	filter: brightness(0.8) blur(5px);
	transform: scale(1.025);
}
.firstPic img, .secondPic img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.firstPic img {
	object-position: 27% 50%;
}
.secondPic {
	right: 0;
}
.secondPic img {
	object-position: 85% 50%;
}
.poweredBy {
	/*display: none;*/
	position: absolute;
	bottom: 0;
	right: 0;
}
.poweredBy a {
	display: flex;
	width: 220px;
	height: 20px;
	font-size: 18px;
	margin: 10px;
	text-decoration: none;
} 
.poweredBy p {
	flex: 100%;
	color: black;
	margin: 0; 
}
@keyframes animation {
	80% {
		text-shadow: 3px 3px 7px rgba(0,0,0,0.30), 1.5px 1.5px 5px rgba(0,0,0,0.40);
		/* transform: scale(1.1) */
	}
  }
@media only screen and (max-width: 1300px) {
	.underCBanner {
		width: 900px;
		height: 900px;
	}
}
@media only screen and (max-width: 1000px) {
	.underCBanner {
		width: 650px;
		height: 650px;
	}
	.secondPic {
		width: 100%;
	}
	.firstPic {
		display: none;
	}
}
@media only screen and (max-width: 600px) {
	.underCBanner {
		width: 500px;
		min-width: 500px;
		height: 500px;
	}
	.underCBanner h1 {
		font-weight: 300;
	}
	.logo {
		height: 120px;
		width: 120px;
	}
}