/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
	text-align:center;
	color:#fff;
}
a{
    text-decoration:none;
}
body{
    align-items: center;
    justify-content: center;
    background: 
		#0a4338;
}
nav{
    background: #FFF;
	position: fixed;
	bottom:0;
	left:0;
	width:100%;
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
}
.nav-content{
    display: flex;
    height: 70px;
    align-items: center;
    list-style: none;
    position: relative;
}
.nav-list{
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
}
.link-item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 50px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.link-item.active{
    transform: translateY(-8px);
}
.link-icon{
    font-size: 30px;
    color: #999;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.link-item.active .link-icon{
    color: #4070F4;
}
.link-text{
    position: absolute;
    font-size: 12px;
    font-weight: 500;
    color: #4070F4;
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.link-item.active .link-text{
    opacity: 1;
}
.head{
	background: #FFF;
	position: fixed;
	top:0;
	left:0;
	width:100%;
	color:#000;
	padding:10px;
}
.signuparea{
	padding:10px;
	margin-top:10px;
	background:#C70039;
}
.resultbox{
	padding:1px;
	margin-top:1px;
	background:black;
	border-radius:5px;
	border:1px solid red;
	box-shadow:1px 1px 3px #fff;
}