@font-face {
    font-family: "ProximaNova";
    src: url("/font/ProximaNova-Regular.otf") format("otf");
}

html{
    width: 100%;
    height: 100%;
}
body
{
    background-image: url(../img/background.jpg);
    background-repeat: no-repeat;
    background-color: #03152d;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main{
    width: 100%;
    height: 100%;
}
#header
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 100%;
}


/*         */

main{
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.menu {
    
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 100;
    background: #f4f8fd;
    width: 60vw;
    height: 70px;
    position: fixed;
    z-index: 100;
    border-radius: 50px;
}

.menu .nav {
    width: 60vw;
    justify-content: space-around;
    display: flex;
    padding-left: 0px;
    position: fixed;
    font-weight: 100;
}
.menu .nav >li {
    display: flex;
    flex-direction:row ;
    padding: 10px 15px 10px 15px;
    list-style-type: none;
    text-align: center;
}

.menu .nav >li>a:hover {
background-color: #c4d5f5;
border-radius: 50px;
font-weight: 600;
padding: 20px;
}
.menu .nav li a {
    color:#53588b !important;
    font-family: "ProximaNova", sans-serif;
    font-size: 1vw;
    display: flex;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.circle{
    display: flex;
    justify-content: center;
    background-color: #f4f8fd;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.circle > img{
    margin-top: 160px;
    overflow: hidden;
    transform: scale(0.6);
    filter: drop-shadow(0px 4px 3px grey);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.circle > img:hover{
    transform: scale(0.8);
}

.section{
    padding-top: 200px;
    display: flex;
    flex-direction: row;
    white-space: 20px;
}

.content{
    font-family: "ProximaNova", sans-serif;
    width: 60vw;
    background: #f4f8fd;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px #000;
    margin-right: 20px;
    padding: 10px 30px;
}

.content p{
    text-align: justify;
    letter-spacing: 0.1em;
    font-size: 1.3em;
    

}




.login-register{
	width: 20vw;
	height: 500px;
	overflow: hidden;
    background: #f4f8fd;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px #000;
}
#chk{
	display: none;
}

.signup{
	position: relative;
	width:100%;
	height: 100%;
}
label{
    font-family: "ProximaNova", sans-serif;
    text-transform: uppercase;
	color: #c4d5f5;
	font-size: 2.3em;
	justify-content: center;
	display: flex;
	margin: 60px;
	font-weight: 1000;
	cursor: pointer;
	transition: .5s ease-in-out;
}
input{
	width: 60%;
	height: 20px;
	background: #e0dede;
	justify-content: center;
  text-align: center;
	display: flex;
	margin: 20px auto;
	padding: 10px;
	border: none;
	outline: none;
	border-radius: 5px;
}

input:focus::placeholder {
    color: transparent;
  }
button{
	width: 60%;
	height: 40px;
	margin: 10px auto;
	justify-content: center;
	display: block;
	color: #fff;
	background: #573b8a;
	font-size: 1em;
	font-weight: bold;
	margin-top: 20px;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
}
button:hover{
	background: #6d44b8;
}
.login{
	height: 460px;
	background: #eee;
	border-radius: 60% / 10%;
	transform: translateY(-180px);
	transition: .8s ease-in-out;
}
.login label{
	color: black;
	transform: scale(.6);
}

#chk:checked ~ .login{
	transform: translateY(-500px);
}
#chk:checked ~ .login label{
  transform: scale(1);	
}
#chk:checked ~ .signup label{
	transform: scale(.6);
}


