body {
	margin: 0;
	background-color: #eaebed;
}


h1, h2, h3, h5{
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}


/*LOGIN DIV*/

h3 {
	opacity: 0;
	font-family: Julius Sans One;
	text-align: center;
	color: black;
	margin: 0;
	font-size: 24px;
	font-weight: bold;
}

h5 {
	opacity: 0;
	color: black;
	font-family: Krona one;
	text-align: center;
	font-size: 10px;
	margin: 0;
	margin-bottom: 25px;
}

#mainlogin {
	background-color: white;
	width: 490px;
	height: 200px;
	position: relative;
	left: 50%;
	transform: translateX(-50%) translateY(100%);
	text-align: center;
	box-shadow: 2px 2px 7px gray;
	overflow: hidden;
}

.logo {
	width: 200px;
	height: 200px;
	background-color: black;
	background-image: url('../../assets/img/nlogo2.png');
	background-size: 120px;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	z-index: 1;
	margin-left: -230px;
	margin-top: -15px;
}

#login {
	width: 380px;
	height: 200px;
	margin-left: auto;
	margin-right: auto;
	background-color: white;
	text-align: center;
	padding-top: 15px;
	padding-left: 150px;
	position: relative;
	right: 0px;
	animation: test 1s;
	margin-left: 80px;
}


@keyframes test {
	from {right: 500px};
	to {right: 0};
}


@keyframes opacity {
	from {opacity: 0;}
	to {opacity: 1;}
}

h3, h5, #login input, #loginbutton{
	animation: opacity 1s forwards;
	animation-delay: 0.3s;
}

#login input {
	opacity: 0;
	margin-bottom: 5px;
	font-family: Krona one;
}

.loginbutton {
	opacity: 0;
	font-family: Krona one;
	margin-top: 8px;
	color: white;
	font-size: 12px;
	padding: 8px;
	transition: color 0.1s, background-color 0.1s;
	cursor: pointer;
	border: none;
	color: black;
}

/*MEDIA QUERIES*/

@media (max-width: 600px) {
	
/*LOGIN DIV*/

#mainlogin {
	transform: translateX(-50%) translateY(25%);
	background-color: white;
	width: 300px;
	height: 400px;
	text-align: center;
	box-shadow: 2px 2px 7px gray;
	overflow: hidden;
}

.logo {
	display: none;
	background-color: black;
	background-image: url('../../assets/img/nlogo2.png');
	background-size: 120px;
	background-position: center center;
	position: absolute;
	z-index: 1;
	margin-left: -150px;
	margin-top: -15px;
}

#logo {
	width: 300px;
	height: 200px;
	margin-left: -10px;
	background-color: black;
	background-image: url('../../assets/img/nlogo2.png');
	background-repeat: no-repeat;
	background-size: 120px;
	background-position: center center;
	padding-bottom: 30px;
	z-index: 1;
	position: relative;
	top: -10px;
	right: -10px;
	opacity: 0;
	animation: test 1s, opacity 1s 0.3s forwards;
}

#login {
	width: 380px;
	height: 400px;
	margin-left: auto;
	margin-right: auto;
	background-color: white;
	text-align: center;
	padding-top: 0px;
	padding-left: 0px;
	position: relative;
	right: 40px;
	animation: test 1s;
}


div#content input {
	display: inline-block;
	width: 71%;
	margin-right: 0;
	margin-left: 10%;
	margin-top: 150px;
	font-size: 20px;
	text-indent: 10px;
}

	
}