html
{
	margin: 0;
	padding: 0;
}

body
{
	margin: 0;
	padding: 0;
	font-family: Roboto, Helvetica, sans-serif;
	height: 100%;
	width: 100%;
	display: flex;
	background: #4354b0;
}

main
{
	display: flex;
	flex: 1 0 auto;
	height: 100%;
	max-width: 100%;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

a
{
	color: #1976d2;
}

div#card
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px 40px;
	max-width: 34%;
}

h3#title
{
	font-size: 45px;
	line-height: 48px;
	font-weight: 400;
}

div#content
{
	max-width: 66%;
	font-size: 16px;
}

@media (max-width: 1098px)
{
	a
	{
		color: #fff;
	}

	div#logo img
	{
		height: 180px;
		width: auto;
		content:url(logo-white.png);
	}

	div#card
	{
		max-width: 100%;
		color: rgba(255,255,255,.87);
		align-self: start;
		padding: 0px 20px 20px 20px;
	}

	h3#title
	{
		font-size: 38px;
		line-height: 40px;
		font-weight: 500;
	}

	div#content
	{
		max-width: 100%;
		font-size: 16px;
	}
}

@media (min-width: 1099px)
{
	body
	{
		background: linear-gradient(135deg, #4354b0 22%, #00d4ff 100%);
	}

	div#card
	{
		color: rgba(0,0,0,.87);
		background-color: #fff;
		border-color: #fff;
		border-radius: 20px;
		box-shadow: 0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12);
	}
}

@media (max-width: 1399px)
{
	div#card
	{
		max-width: 66%;
	}
}

@media (max-width: 1919px)
{
	div#card
	{
		max-width: 50%;
	}
}