@import "loader.css";
@import "header.css";
@import "main.css";
@import "footer.css";

*{
	margin: 0;
	padding: 0;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	box-sizing: border-box;
}

html{
	scroll-behavior: smooth;
	background-color: #131414;
}

::selection{
	/* background-color: #6FFFE960; */
	background-color: #5BC0BE80;
}

::-webkit-scrollbar{
	width: 10px;
	background-color: #CED4DA;
}

::-webkit-scrollbar-thumb{
	background-color: #131414;
}

/* Go Top BTN */
.goTop{
	position: fixed;
	z-index: 999;
	bottom: 40px;
	right: 40px;
	width: 40px;
	height: 40px;
	background-color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	color: #131414;
	outline: none;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.8);
	transition: .2s linear;
}

.goTop:hover{
	background-color: #CED4DA;
}

@media screen and (max-width: 768px){
	.goTop{
		bottom: 20px;
		right: 20px;
	}
}