:root{
	--accent:91,138,254;
	--round:4px;
	--background:#FFFFFF;
	--card:#FFF;
	--text-color:#6b7c93;
	--box-shadow:0 0 0 1px #d8e1ed;
	--abstract-text:#000;
	--btn-text:#FFF;
	--border-color:#e7edf3;
	--input-border-color:#d0dbe5;
	--input-background:#FBFCFD;
	--drop-shadow:rgba(0,0,0,.1);
}
body.dark{
	--background:#121416;
	--card:#171725;
	--text-color:#879ebd;
	--abstract-text:#FFF;
	--border-color:#252538;
	--input-border-color:#383851;
	--btn-text:#000;
	--box-shadow:0 0 0 1px #252538;
	--input-background:#1e1e2f;
	--drop-shadow:rgba(0,0,0,.5);
}
body{
	background-color:var(--background);
}
body.dark .selector.active{
	background-color:#1F2948;
}
::selection{
	background:rgba(var(--accent),.5);
}html {
  scroll-behavior: smooth;
}
body{
	font-family: 'Muli', sans-serif;
	-webkit-tap-highlight-color: transparent;
	color: #3C4761;
	font-size:1rem;
	line-height:1.5;
	background-color:rgb(--background);
	color:var(--text-color);
}
.logo{
	max-width:300px;
	margin: 45px auto;
}
.container{
	position:relative;
	max-width:1200px;
}

.section{
	display:flex;
}
.section[bg='offset']{
	background-color:#F3F5F9;
}

body.dark .section[bg='offset']{
	background-color:#1b1e21;
}
.section.top{
	overflow:hidden;
	position:relative;
	max-height:600px;
}
.section.top>.filter{
	position:absolute;
	inset:0;
	background-size: cover;
    filter: blur(12px);
    margin: -12px;
}

.section.top .banner{
	max-width: 1200px;
    width: 100%;
    margin: auto;
    z-index: 1;
}

.section.footer{
	border-top:solid 1px var(--border-color);
	padding:16px;
}

.content{
	border:solid 1px var(--border-color);
	border-width:0 1px 0 1px;
	padding:30px;
}

.section.sticky{
	position:sticky;
	top:0;
	z-index:10;
	background-color:var(--background);
}
.section.sticky>.content{
	padding:19px;
	
}

.text-right{
	text-align:right;
}

.content h1{
	color:rgb(var(--accent));
	margin:0;
	font-size:clamp(24pt,30pt,4vw)
}

.applet{
    display: inline-flex;
    border: solid 1px var(--border-color);
    padding: 5px 10px;
    border-radius: 5px;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
}

.applet i{
	color:rgb(var(--accent));
}

.section a.link{
	text-decoration:none;
	color:#5B8AFE;
	font-weight:bold;
}
.btn{
	padding:7px 12px;
	white-space: nowrap;
	position: relative;
	text-decoration: none;
	cursor:pointer;
	border-radius:var(--round);
	border:solid 2px transparent;
	
	transition:0.2s;
	display:inline-flex;
	align-items:center;
	user-select:none;
	justify-content: center;
	color:rgb(var(--accent));
}
.section .btn.solid{
	color:#FFF;
	background-color:rgba(var(--accent));
}

.btn.disabled{
	pointer-events:none;
	opacity:0.7;
}

a.social{
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: rgb(var(--accent));
    vertical-align: top;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 99px;
    margin: 3px;
}

a.social>img{
	width:100%;
}

.bar{
	height: 0;
    display: flex;
    align-items: center;
	z-index:10;
	position:relative;
}
.bar>.card{
	padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
	box-shadow:0 0 0 1px rgba(0,0,0,.075);
	display:flex;
	gap:5px;
}
body.dark .bar>.card{
	background-color: #121416;
	box-shadow:0 0 0 1px rgba(255,255,255,.075);
}
#content{
	margin:15px 0;
}
#content h1{
	font-size:30pt;
}
#content h1,#content h2,#content p{
	margin:0;
	padding:0;
}
#content a{
	color:rgb(var(--accent));
}