.border {
	border: 2px solid red;
}
.flex {
	display: flex;
}

.justify-content {
	justify-content: center;
}

.justify-content-1 {
	justify-content: space-between;
}
.align-items {
	align-items: center;
}
.bg-black {
	background-color: #000000;
	color: #ffffff;
}
.invert {
	filter: invert(1);
}
.bg-gray {
	background-color: #121212;
	color: #ffffff;
}
.radius {
	border-radius: 7px;
}
.m-1 {
	margin: 5px;
}
.p-1 {
	padding: 8px;
}

* {
	scrollbar-width: thin;
	scrollbar-color: #4e5052 #000000;
}

*::-webkit-scrollbar {
	width: 8px;
}

*::-webkit-scrollbar-track {
	background: #1a1a1a;
}

*::-webkit-scrollbar-thumb {
	background-color: #333;
	border-radius: 4px;
	border: 2px solid #1a1a1a;
}

*::-webkit-scrollbar-thumb:hover {
	background-color: #555;
}
