@import url(https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&display=swap%27);
@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap);

html{
	scroll-behavior:smooth;
	-webkit-font-smoothing: antialiased;
}

body {
	background: var(--body-bg);
	color: var(--default-color);
	line-height: 1.4;
	margin: 0;
	font-family:  'Rajdhani', 'Roboto' , Sans-Serif;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-size: 13px;
	overflow-y: scroll;
}






.dark body{
   	background: #101012;
	color: var(--default-color);
	line-height: 1.4;
	margin: 0;
	font-family:  'Rajdhani', 'Roboto' , Sans-Serif;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-size: 13px;
	overflow-y: scroll;
}



*:not(.sceditor-button), *::before, *::after{
	-webkit-box-sizing:border-box;
	-moz-box-sizing: border-box;
	box-sizing:border-box;
	-webkit-font-smoothing: antialiased;
}

a{
	text-decoration: none;
	transition: 250ms ease;
}

a:hover,
a:active {
	color: var(--default-link-hover-color);
}

.wrapper {
	width: 90%;
	max-width:1280px;
	margin: auto auto;
}

