/* ====================

Table of Contents

1. Header
2. Action buttons
3. Section

==================== */



/* 1.Header */

#article-header {
	margin: 0 auto 20px;
}

#article-header p {
	color: #adb0b5;
	font-weight: 600;
}

.demo-header {
	display: block;
	position: relative;
	width: 100%;
	text-align: center;
	margin: 100px auto 80px;
}

.demo-header h2 {
	font-size: 36px;
	text-align: center;
	margin: 0 auto;
}

.demo-header span {
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	color: #1d1e1f;
	font-size: 150px;
	font-weight: 900;
	line-height: 1;
	transform: translate(-50%,-30%);
}



/* 2. Action buttons */

#action-buttons {
	display: flex;
	text-align: center;
	justify-content: center;
	position: relative;
	width: 100%;
	margin: 0 auto;
}

#action-buttons .button {
	position: relative;
	z-index: 2;
	width: 220px;
	margin: 0 10px;
}

#action-buttons .button:hover {
	text-decoration: none;
}



/* 3. Section */

section {
	margin: 40px auto 0;
	color: #adb0b5;
	font-size: 16px;
}

#mockups + section {
	margin: 0 auto;

}

section p {
	margin: 15px 0;
}

section p:first-of-type {
	margin: 0 0 15px;
}

section p:last-of-type {
	margin: 15px 0 0;
}

section p strong {
	font-weight: 500;
	color: #e4e6eb;
}



@media screen and (max-width: 1440px) { 

	#article-header,
	section,
	#demo-page-notes-wpr ul {
	    max-width: 800px;
	}

	section {
		font-size: 15px;
	}
}

@media screen and (max-width: 1380px) { 
	
	.demo-header span {
		font-size: 130px;
	}

	#article-header,
	section,
	#demo-page-notes-wpr ul {
	    max-width: 680px;
	}
}

@media screen and (max-width: 1024px) {

	.demo-header {
		margin: 40px auto;
	}

	.demo-header span {
		display: none;
	}
}

@media screen and (max-width: 450px) { 

	.demo-header h2 {
		font-size: 24px;
	}

	#action-buttons {
		display: block;
		width: calc(100% - 20px);
		margin: 0 auto;
	}

	#action-buttons .button {
		width: 100%;
		margin: 0 0 10px;
	}

	#action-buttons .button:last-of-type {
		margin: 0;
	}

	#settings .presets,
	#settings .presets-highlighter,
	section,
	.get-code-button {
		width: calc(100% - 20px);
	}
}


