@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");

/*

	COLORS

	Light Dew: #e1ffb5
	Pro Green: #54d100
	Dark Green: #338000

*/

html, body
{
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	overflow-x: hidden;
	font-family: 'Quicksand', sans-serif;
	box-sizing: border-box;
	background: rgb(240, 255, 240);
}

p, a, h4
{
	margin-top: 0;
}

nav hr
{
	width: 90%;
	border-color: #338000;
}

.page-container
{
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
}

.content-container
{
	margin: 25px 25px;
	width: 1000px;
}

.front
{
	width: 100%;
	height: 1080px;
	background-image: url("img/pro-skin-image-00.png");
	display: inline-block;
	justify-content: center;
}

.front-content
{
	display: flex;
	justify-content: center;
}

.white-label
{
	position: absolute;
	right: 100px;
	margin-top: 100px;
	background: rgba(255,255,255,0.3);
	border-radius: 10px;
	width: 450px;
	height: auto;
	display: grid;
	grid-template-rows: 60px 115px 100px;
	justify-content: center;
}

.white-label p
{
	text-align: center;
	color: white;
	font-weight: 800;
	font-size: 32px;
	line-height: 70px;
}

.white-label img
{
	max-width: 100%;
}

.white-label a
{
	text-decoration: none;
	color: white;
	margin: 15px 15px;
}

.white-label .skoda-nanar
{
	background: #e1ffb5;
	border-radius: 10px;
	height: 100%;
	width: 100%;
	transition: background 0.2s ease;
}

.white-label .skoda-nanar:hover
{
	background: #afdb6e;
	transition: background 0.2s ease;
}

.white-label .skoda-nanar p
{
	color: black;
	font-size: 32px;
}

article h1
{
	text-align: center;
	font-size: 42px;
}

article h2
{
	font-size: 32px;
}

article p
{
	text-align: justify;
	font-size: 24px;
}

article img
{
	float: left;
	max-width: 35%;
	max-height: 35%;
}


@media screen and (max-width: 1000px)
{
	.front-content
	{
		display: flex;
		justify-content: center;
	}

	.white-label
	{
		position: static;
		right: 0;
	}
}

@media screen and (max-width: 700px)
{
	.white-label
	{
		width: 90%;
	}

	.white-label p
	{
		font-size: 28px;
	}
}