/*======	FONTS	======*/

@font-face {
	font-family: "TeleNeo Regular";
	font-style: normal;
	font-weight: 400;
	src: local(""), url("../font/TeleNeoWeb-Regular.eot") format("eot"),
	url("../font/TeleNeoWeb-Regular.woff") format("woff"),
	url("../font/TeleNeoWeb-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "TeleNeo Medium";
	font-style: medium;
	font-weight: 500;
	src: local(""), url("../font/TeleNeoWeb-Medium.eot") format("eot"),
	url("../font/TeleNeoWeb-Medium.woff") format("woff"),
	url("../font/TeleNeoWeb-MediumItalic.woff2") format("woff2");
}
@font-face {
	font-family: "TeleNeo Bold";
	font-style: bold;
	font-weight: 500;
	src: local(""), url("../font/TeleNeoWeb-Bold.eot") format("eot"),
	url("../font/TeleNeoWeb-Bold.woff") format("woff"),
	url("../font/TeleNeoWeb-Bold.woff2") format("woff2");
}
@font-face {
	font-family: "TeleNeo Extrabold";
	font-style: extrabold;
	font-weight: 600;
	src: local(""), url("../font/TeleNeoWeb-ExtraBold.eot") format("eot"),
	url("../font/TeleNeoWeb-ExtraBold.woff") format("woff"),
	url("../font/TeleNeoWeb-ExtraBold.woff2") format("woff2");
}




/*======	CONTENT		======*/

body {
	padding: 0;
	margin: 0;
	min-height: 600px;
	min-width: 100px;
}

.header {
	width: 100%;
	height: 80px;
	background-color: #e20074;
}

.content {
	width: 100%;
	height: calc(100vh - 80px);
	min-height: 600px;
	min-width: 100px;

	display: flex;
	justify-content: center;
	align-items: center;

	background: linear-gradient(
	360deg,
	rgba(255, 255, 255, 1) 30%,
	rgba(224, 228, 239, 1) 91%
	);
}

.box {
	width: 70vw;
	text-align: center;
	padding: 50px;
	
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0px 4px 10px rgb(43 60 73 / 15%);
	border-radius: 8px;
}





/*======	TEXTS	======*/

.heading{
	font-family: "TeleNeo Extrabold";
	font-size: 1.5em;
	color: #262626;
	margin-top: 30px;
}

.text {
	font-family: "TeleNeo Regular";
	font-size: 1em;
	line-height: 1.5rem;
}

.button {
	font-family: "TeleNeo Bold";
	font-size: 1em;
	color: white;
	text-decoration: none;
	
	margin: 30px 0px;
	padding: 10px 30px;
	
	border: none;
	border-radius: 6px;
	/*background: linear-gradient(180deg, #ff359d 0%, #e20074 100%);*/
	background-color: #e20074;
}





/*======	IMAGES	======*/

.logo{
	margin-left: 20%;
	margin-top: 21px;
	height: 38px;
}

.image {
	margin-top: -100px;
	width: 140px;
	height: 140px;
}






/*======	RESPONSIVE ADJUSTMENTS	======*/

@media screen and (min-width: 4000px) {
	.heading{
		margin-top: 60px;
	}
	
	.text{
		line-height: 70px;
	}
	
	.button{
		margin: 50px 0px;
		padding: 20px 50px;
	}
	
	.logo{
		height: 100px;
		margin-top: 40px;
	}
	
	.header{
		height: 180px;
	}
	
	.image{
		margin-top: -200px;
		width: 240px;
		height: 240px;
	}
}



@media screen and (max-width: 500px) {
	
	.body{
		min-height: 500px;
	}
	
	.content{
		min-height: 500px;
	}
	
	.box{
		padding: 20px;
		padding-bottom: 10px;
		padding-top: 50px;
	}
	
	.logo{
		margin-left: 20%;
		margin-top: 11px;
		height: 19px;
	}
	
	.header {
		height: 40px;
	}
	
	.image{
		margin-top: -80px;
		width: 90px;
		height: 90px;
	}
	
	.button{
		margin: 10px 0px;
		padding: 5px 10px;
	}
}

@media screen and (max-height: 600px) {
	
	.body{
		min-height: 500px;
	}
	
	.content{
		min-height: 500px;
	}
	
	.box{
		padding: 20px;
		padding-bottom: 10px;
		padding-top: 50px;
	}
	
	.logo{
		margin-left: 20%;
		margin-top: 11px;
		height: 19px;
	}
	
	.header {
		height: 40px;
	}
	
	.image{
		margin-top: -80px;
		width: 70px;
		height: 70px;
	}
	
	.button{
		margin: 10px 0px;
		padding: 5px 10px;
	}
}

@media screen and (max-width: 400px) {
	.image{
		margin-top: -80px;
		width: 80px;
		height: 80px;
	}
}

@media screen and (max-width: 300px) {
	.box {
		padding: 10px;
		padding-bottom: 5px;
		padding-top: 40px;
	}
	
	.logo{
		margin-left: 10%;
		margin-top: 11px;
		height: 19px;
	}
	
	.image{
		margin-top: -65px;
		width: 40px;
		height: 40px;
	}
	
	.text{
		line-height: 1.0rem;
	}
	
	.button{
		margin: 5px 0px;
		padding: 5px 5px;
	}
}

@media screen and (max-width: 200px) {
	
	.box {
		padding: 0px;
		padding-bottom: 5px;
		padding-top: 40px;
		width: 100vw;
		min-width: 100px;
		border-radius: 0px;
	}
	
	.image{
		margin-top: -60px;
		width: 30px;
		height: 30px;
	}
}
