@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--primary: #f87171;
	--secondary: black;
}

body,
html {
	margin: 0;
	padding: 0;
	height: 100vh;
	max-height: -webkit-fill-available;
}
body {
	/* margin: 0; */
	font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system;
}

@font-face {
	font-family: 'Brush Spidol';
	font-style: normal;
	font-weight: 400;
	src: url('/fonts/BrushSpidol-EaJPz.otf') format('opentype');
}

/* .container {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
} */

.space-x {
	display: flex;
	/* justify-content: center; */
	align-items: center;
}

.space-x > :not(:last-child) {
	margin-right: 1rem;
}

.space-y {
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* align-items: center; */
}

.space-y > :not(:last-child) {
	margin-bottom: 1rem;
}

/* width */
*::-webkit-scrollbar {
	display: block;

	width: 8px;
	height: 8px;
	background-color: transparent;
}

*::-webkit-scrollbar-track {
	background-color: #00000000;
}

/* Handle */
*::-webkit-scrollbar-thumb {
	background: #c0c0c0;
	border-radius: 5px;
}

*::-webkit-scrollbar-thumb:hover {
	background-color: #7c7c7c;
	background-clip: padding-box;
}
