body{
	background-image: url('gross3.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position-y: center;
	overflow-y: hidden;
	overflow-x: hidden;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
}
h1{
	color: blue;
	animation: anima 10s infinite alternate linear;
}
@keyframes anima{
	0%{color: transparent;}
	10%{color: transparent;}
	30%{color: darkblue;}
	60%{color: white;}
	82%{color: slateblue;}
	100%{color: blue;}
}
input{
	background-color: transparent;
	border-radius: 20px;
	padding: 8px;
	margin: 3px;
	font-weight: bold;
}
input:hover {
	border: black 2px solid;
}
::placeholder{
	font-weight: lighter;
	color: white;
}
#div1,#div2{
	margin-top: 100px;
	padding: 30px;
	border-radius: 50px;
	backdrop-filter: blur(15px);
	width: fit-content;
	height: fit-content;
	position: absolute;
}
#div1{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -90%);
}
#div2{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-600%, -80%);
}
#div1>button,#div2>button{
	text-shadow: black 1px 0px;
	font-weight: bold;
	color: aliceblue;
	background:transparent;
	border: transparent;
}
#sub1,#sub2{
	padding: 6px 12px 6px 12px;
	font-weight: bold;
	margin: 5px;
}
#sub1:hover,#sub2:hover{
	background-color: black;
	font-weight: bolder;
	color: white;
}
#div1>button:hover,#div2>button:hover{
	text-shadow: none;
	color: black;
}
#div1.active1{
	animation: act1 1s linear forwards;
}
@keyframes act1{
	0%{transform: translate(-50%, -90%);}
	25%{transform: translate(-40%, -90%);}
	50%{transform: translate(-60%, -90%);}
	75%{transform: translate(1000%, -90%);}
	100%{transform: translate(2000%, -90%);}
}
#div2.active2{
	animation: act2 1s linear forwards;
}
@keyframes act2{
	0%{transform: translate(-2000%, -70%);}
	25%{transform: translate(-1000%, -70%);}
	60%{transform: translate(-40%, -70%);}
	75%{transform: translate(-60%, -70%);}
	100%{transform: translate(-50%, -70%);}
}
#div1.active3{
	animation: act3 1s linear forwards;
}
@keyframes act3{
	0%{transform: translate(-2000%, -90%);}
	25%{transform: translate(-1000%, -90%);}
	60%{transform: translate(-40%, -90%);}
	75%{transform: translate(-60%, -90%);}
	100%{transform: translate(-50%, -90%);}	
}
#div2.active4{
	animation: act4 1s linear forwards;
}
@keyframes act4{
	0%{transform: translate(-50%, -70%);}
	25%{transform: translate(-40%, -70%);}
	50%{transform: translate(-60%, -70%);}
	75%{transform: translate(1000%, -70%);}
	100%{transform: translate(2000%, -70%);}	
}
#alert{
	background-color: red;
	border-radius: 0px 0px 50px 50px;
	text-align: center;
	width: 300px;
	height: fit-content;
	position: fixed;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	animation: alerto 5s linear forwards ;
	z-index: 7;
}
#alert p{
	font-weight: bold;
	margin: 15px;
}
@keyframes alerto{
	0%{top: -200px;}
	25%{top: 0px;}
	75%{opacity: 1;}
	100%{opacity: 0;}
}

@media screen and (max-width : 768px){
body{
	background-image: url('gross2.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position-y: center;
	overflow-y: hidden;
	overflow-x: hidden;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
}
}