@font-face {
	font-family: 'Comfortaa';
	src: 	url('/resources/fonts/comfortaa.woff2') format('woff2'),
			url('/resources/fonts/comfortaa.woff') format('woff'),
			url('/resources/fonts/comfortaa.ttf') format('ttf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Modak';
	src: 	url('/resources/fonts/modak.woff') format('woff'),
			url('/resources/fonts/modak.ttf') format('ttf');
	font-weight: normal;
	font-style: normal;
}

:root{
	--main-color: #b4407c;
	--text-color: #FFFFFF;
	--background-color: #b4407ce3;
}

*{box-sizing: border-box;}

html, body{
	width: 100%; height: 100%;
	padding:0; margin: 0;
	background-image: url('/resources/bg.jpg');
	background-position: center;
	background-size: 600px;
}

.container {
	width: 100%;
	height:100%;
	background-color: var(--background-color);

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.logo {
	text-align: center;
}
.logo img{
	width: 116px;
	margin-bottom: 50px;
}
.logo .name{
	font-family: "Modak", serif;
	font-weight: normal;
	font-style: normal;
	font-size: 96px;
	color: var(--text-color);
	line-height: 94px;
}
.logo .call{
	font-family: "Comfortaa", serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	font-size: 18px;
	letter-spacing: 2px;
	color: var(--text-color);
}

@media only screen and (max-width: 599px) {
	
}

@media only screen and (max-width: 1023px) {
	.logo img{
		width: 88px;
		margin-bottom: 30px;
	}
	.logo .name{
		font-size: 76px;
		line-height: 74px;
	}
	.logo .call{
		font-size: 14px;
	}
}