@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;700;800&display=swap");

:root {
	--color-primary: #525dff;
	--color-secondary: #ebebef;
	--color-white: white;
	--color-black: black;
	--color-text: rgb(228, 228, 228);

	--font-family-primary: "Rubik", system-ui, sans-serif;
	--font-family-secondary: "Rubik", system-ui, sans-serif;
	--font-family-triary: "Nunito", system-ui, sans-serif;
}

* {
	-webkit-tap-highlight-color: transparent;
}

html {
	font-size: 15px;
	background: var(--color-black);
}

body {
	font-family: var(--font-family-secondary), sans-serif;
	color: var(--color-white);
	font-weight: 300;
}

a:hover {
	text-decoration: underline;
	color: inherit;
}

.button:hover {
	color: inherit;
}

body,
button,
input,
optgroup,
select,
textarea {
	font-family: var(--font-family-secondary), sans-serif;
	border-radius: 0 !important;
}

pre {
	font-family: consolas, monospace;
}

h1,
h2,
h3,
h4,
h5,
h6,
th,
dt {
	font-family: var(--font-family-primary), sans-serif;
	font-weight: 700;
	text-align: inherit;
}

b,
u,
span,
font {
	color: inherit;
	font-size: inherit;
}

b,
strong {
	font-weight: 700;
	color: inherit;
}

li,
p {
	font-size: inherit;
	margin-bottom: 0.5rem;
	min-height: 0.25rem;
}

hr {
	height: 1px;
	border-top: 1px solid var(--color-secondary);
	margin: 1rem 0;
}

label {
	cursor: pointer;
}

a {
	color: inherit;
}

ul.checklist {
	list-style: circle;
}

* {
	box-sizing: border-box;
}

svg {
	line-height: inherit;
	display: inline;
}

input,
textarea {
	border: none;
	outline: none;
	padding: 1rem 2rem;
}

table {
	width: 100%;
	border-collapse: collapse;
	overflow-x: scroll;
}

small {
	font-size: 0.93rem;
}

tr {
	border-bottom: 1px solid #eaeaea;
}

td,
th {
	padding: 1rem;
	text-align: left;
}
tr:last-child {
	border-bottom: none;
}

.modal-content {
	background-color: var(--color-white);
	border-radius: 1rem;
	padding: 1rem;
}

.button {
	background: none;
	border: none;
	font-weight: 300;
}

div::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

div::-webkit-scrollbar-track {
	border-radius: 8px;
	background-color: transparent;
}

div::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background-color: var(--color-primary);
}

.title {
	line-height: 0.9;
}

.label {
	color: var(--color-text);
	font-weight: 300;
}
