/*

Last update: December 23, 2022 (Tyron)

*/



/*---------- HARMONIZE BROWSER DEFAULTS ------------------------------*/

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, button, body, canvas, caption, center, cite, code, details, dd, del, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer, form, frame, frameset, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, input, ins, kbd, label, legend, li, mark, menu, nav, object, ol, option, output, p, pre, q, ruby, s, samp, section, select, small, span, strike, strong, sub, summary, sup, table, tbody, td, textarea, tfoot, th, thead, time, tr, tt, u, ul, var, video { margin: 0; padding: 0; border: none; border-radius: 0; outline: none; font-family: inherit; font-size: inherit; letter-spacing: 0; vertical-align: baseline; background-color: transparent; }



/*---------- FONTS ---------------------------------------------------------------------------------------------------------*/

@font-face {
	font-family: 'Barlow'; font-weight: normal; font-style: normal;
	src: url('barlow.ttf')  format('truetype');
}



/*---------- GENERAL SETTINGS ------------------------------*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-text-size-adjust: none !important;
	text-size-adjust: none !important;
}

html {
	width: 100vw;
	min-height: 100vh;
	overflow-x: hidden;
	font-family: Barlow;
	font-size: 14px;
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;
}

body {
	width: 100vw;
	height: auto;
	overflow: auto;
	clear: both;
}

texture {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	/*height: 300vh;*/
	background: linear-gradient(180deg, rgb(85,83,80), rgb(50,53,55));
	filter: url(#PageTexture);
	/*background: linear-gradient(120deg, rgb(60,60,55) 10%, rgb(80,80,70) 50%, rgb(60,60,55) 90%);*/
}

page {
	display: none;
	width: 90vw;
	max-width: 720px;
	filter: none;
	margin: auto;
	height: auto;
	overflow: auto;
	clear: both;
}

page:after {
  clear: both; 
  content: "";
  display: table; 
}

content {
	width: 90vw;
	max-width: 720px;
	filter: none;
	margin: auto;
	height: auto;
	overflow: auto;
	clear: both;
	text-align: center;
}

content::after {
  clear: both; 
  content: "";
  display: table; 
}

h1 {
	display: block;
	position: relative;
	font-size: 3rem;
	font-weight: heavy;
	line-height: 1em;
	color: rgba(0,0,0,0.7);
	margin: 20px 0 20px 0;
}

h1::before {
	content: "MAJOR BRICKS";
	position: absolute;
	left: 0;
	top: 2px;
	right: 0;
	color: rgb(120,120,120,0.3);
}

p {
	position: relative;
	color: rgb(120,120,120);
	pointer-events: none;
	margin-bottom: 30px;
}

svg { visibility: hidden; }

a {
	display: block;
	position: relative;
	width: 100%;
	float: left;
	margin: 0 0 10px 0;
	}
    
a::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	box-shadow: inset 0 0.4rem 1rem rgba(0,0,0,1);
	border-radius: 1rem;
} 
	   
img {
	float: left;
	width: 100%;
	height: auto;
	border: 0.2rem solid rgb(70,70,70);
	border-top-color: rgb(40,43,45);
	border-bottom-color: rgb(105,103,100);
	border-radius: 1rem;
}

stripeso {
	position: absolute;
	overflow: hidden;
	left: 0.2rem;
	right: 0.2rem;
	top: 0.2rem;
	bottom: 0.2rem;
	border-radius: 1rem;
	background-image: repeating-linear-gradient(180deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 3px);
}

@media screen and (max-width: 800px) {
	html				{ font-size: 2vw; }
}

@media screen and (max-width: 480px)	{
	html				{ font-size: 3.9vw; }
}



