/*here you ar reseting every feature so you can start from scratch */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*LAYOUT*/

*,
*:before,
*:after{
	position: relative;
	box-sizing:inherit;
}

body{
	font-size: 1.6rem;
	font-family: Muli,Mulish, sans-serif;
	margin:0;
	color:#efefef;
	/*background: #050060;*/
	color:white;
	
}
.site-main{
	min-height:100%;
	max-height:100%;
	background:#050060;
	position:relative;
	top:0;
	bottom:100%;
	left:0;
	z-index:1;
	overflow-x: hidden;
	transition: left 0.2s;
}

html{
	/*1 rem = 10px*/
	font-size: 62.5%;
	box-sizing: border-box;
	scroll-behavior: smooth;
	
}

/*CSS VARIABLES*/

:root{
	/*this section doesnt work for some reason*/
	--wide: 128rem;
	--desktop:96rem;
	--tablet:72rem;
	--phone: 54rem;
	
	--color-text: #efefef;
	--color-white: #ffffff;
	--color-bg-dk: #050060;
	--color-neon: #24d6ff;
	
	--bg-gradient: linear-gradient(
	240deg,
	rgba(164,88,255,1)0%,
	rgba(53,68,255,1)40%,
	rgba(10,47,158,1)80%
	);
	
	--ease-bounce: cubic-bezier(.75,-0.5,0,1,1.75);
	
	/*text sizing*/
	--base-size: 1.6rem;
	--type-scale: 1.33;
	--small: var(--base-size);
	--body: calc(var(--base-size)* --var(--type-scale));
	--h6: calc(var(--body)* --var(--type-scale));
	--h5: calc(var(--h6)* --var(--type-scale));
	--h4: calc(var(--h5)* --var(--type-scale));
	--h3: calc(var(--h4)* --var(--type-scale));
	--h2: calc(var(--h3)* --var(--type-scale));
	--h1: calc(var(--h2)* --var(--type-scale));
	
h1,
h2,
h3,
h4,
h5,
h6{
	font-family:'Lexend Deca', sans-serif;
}	
}
h1{
	font-size: 70px;
	font-family:'Lexend Deca', sans-serif;
}
h2{
	font-size: 50px;
	font-family:'Lexend Deca', sans-serif;
}
h3{
	font-size: 50px;
	font-family:'Lexend Deca', sans-serif;
}
h4{
	font-size: 50px;
	font-family:'Lexend Deca', sans-serif;
}
h5{
	font-size: 50px;
	font-family:'Lexend Deca', sans-serif;
}
h6{
	font-size: 50px;
	font-family:'Lexend Deca', sans-serif;
}
p{
	margin-bottom:1rem;
	font-size:20px;
}
small,
.small-text{
	font-size: 1.6rem;
}
a{
	color:#24d6ff;
}
a:hover,
a:active,
a:focus{
	color:#24d6ff;
}
a:visited{
	color:gray;
}
a.btn{
	font-size: 1.6rem * 1.33;
	padding:0.8rem 2.4rem;
	border:2px solid #24d6ff;
	color:#24d6ff;
	border-radius:100px;
	position:absolute;
	left:50%;
	bottom:3.2rem;
	
	transform: translate(-50%);
}
ol,
ul{
	line-height: 1.6rem * 1.33;
}
.site-title{
	font-weight: 900;
	color:gold;
}
.sub-section-title{
	
	margin:1.6rem;
}
.sub-section-title-white{
	font-size: 1.6rem*1.33*1.33;
	background-image: linear-gradient(/*here you are adding color to the background of each sub-title*/
	240deg,
	rgba(164,88,255,1)0%,
	rgba(53,68,255,1)40%,
	rgba(10,47,158,1)80%
	);
	display:inline-block;
	-webkit-background-clip:text;/*here you are molding the color so it only fits inside the text*/
	-webkit-text-fill-color:white;/*now you are making the text transparent so we can see the color from the background*/
	
}
