
* {
	margin: 			0;
	padding: 			0;
	border: 			0;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: 	border-box;
	box-sizing: 		border-box;

    -webkit-appearance: none;
}

h1,h2,h3,h4,h5{
    font-weight: normal;
}

:root {
  --color-brand: #ca8f29;
  --color-back-light: #fbf9f7;
  --color-back-dark: #222222; /*#0f172a;*/
  --color-text-dark: #222222;
  --color-text-light: #f0f0f0;
  --font-size-h1: 48px;
  --line-height-h1: 54px;
  --font-size-h2: 24px;
  --line-height-h2: 32px;
  --font-size-h3: 22px;
  --line-height-h3: 32px;
  --font-size-body: 20px;
  --line-height-body: 30px;
  --radius: 8px;
  --transition: 0.3s ease;
}

/*
*:not(html) {
    -webkit-transform: 	translate3d(0, 0, 0);
}
*/

::selection {
	background: #ca8f29;
	color: #ffffff;
}

::-moz-selection {
	background: #ca8f29;
	color: #ffffff;
}

html {
	width:				100%;
	height: 			100%;
	overflow-y: 		scroll;
	font-family: 		'exo_2regular',Arial,Georgia,Courier;
	font-weight:		normal;
	background: 		var(--color-back-light);
}

body {
	width:				100%;
	height: 			100%;
	font-family: 		'exo_2regular',Arial,Georgia,Courier;
	font-size:			var(--font-size-body);
	line-height:		var(--line-height-body);
	font-weight: 		normal;
	text-align:			left;
	color:				var(--color-text-dark);
	display: flex;
	flex-direction: column;
}

.to-body{
	flex: 1;
}




.centerer{
	position: 			relative;
	width:				100%;
	max-width: 			1700px;
	margin: 			0px auto;
	padding:			0px 20px;
}

h1 > span{
  color: #ca8f29;
}

h2 > span{
  color: #ca8f29;
  font-weight: bold;
}


.screenshot-viewer{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #00000080;
	z-index: 1002;
	display: none;
}

.screenshot-viewer > div{
	position: absolute;
	left: 50%;
	top: 50%;
	width: auto;
	height: auto;
	max-width: 80%;
	max-height: 80%;
	transform: translate(-50%,-50%);
	border: 5px solid var(--color-brand);;
	border-radius: 8px;
}

.screenshot-viewer > div > img{
	position: relative;
	display: block;
	width: 100%;
}

.screenshot-viewer > div > i{
	position: absolute;
	top: 0px;
	right: 0px;
	font-size: 40px;
	line-height: 40px;
	color: white;
	background: var(--color-brand);;
	border-radius: 50%;
	padding: 5px;
	transform: translate(50%,-50%);
	cursor: pointer;
}