/* FONTS */

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

:root {
	--typo1: 'Roboto', sans-serif;
}

h1 {
	color: var(--t1);
	font-family: var(--typo1);
}

h2 {
	color: var(--t1);
	font-family: var(--typo1);
}

h4 {
	color: var(--t1);
	font-family: var(--typo1);
	font-weight: 300;
}

h5 {
	color: var(--t1);
	font-family: var(--typo1);
	font-weight: 500;
	font-size: 0.9rem;
}

p {
	color: var(--t1);
	font-family: var(--typo1);
	font-weight: 300;
	font-size: 0.8rem;
	text-align: justify;
}

/* COLORS MODE */
body,
body[data-color-mode='dark'] {
	/* backgroud color */
	--b1: #030008;
	/* backgroud color opacity*/
	--b1o3: rgba(3, 0, 8, 0.3);
	/* b1 light var */
	--b2: #16131d;
	/* mostly for tooltips */
	--b3: #717181;
	/* text & T color */
	--t1: #fbfffd;
	/* peps color */
	--x1: blue;
}
body[data-color-mode='light'] {
	--b1: #d4d4d4;
	--b1o3: rgba(3, 0, 8, 0.3);

	--b2: #030008;
	--b3: #37313f;

	--t1: #08924d;
	--x1: blue;
}

body[data-color-mode='red'] {
	--b1: #bb4747;
	--b1o3: rgba(3, 0, 8, 0.3);

	--b2: #030008;
	--b3: #37313f;

	--t1: #14020d;
	--x1: blue;
}

/* GLOBAL SETTINGS */

body {
	background: var(--b1);
}

* {
	margin: 0;
	text-decoration: none;
}

ul {
	list-style: none;
	padding-inline-start: 0;
}

:root {
	/* Border radius */
	--br: 8px;

	/* Border width */
	--borderWidth: 2px;
}

svg {
	stroke: var(--t1);
	stroke-linejoin: round;
	stroke-linecap: round;
	stroke-width: 0.4rem;
	stroke-opacity: 1;
	fill: none;
}

button {
	margin: 0;
	padding: 0;
	border: var(--br);
	background: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
}

input[type='text'] {
	appearance: none;
	border: none;
	outline: none;
	background: none;
	border-radius: var(--br);
	color: var(--t1);
	font-size: 0.9rem;
	font-family: var(--typo1);
}

/* CONTAINER */
.basic-container {
	border-radius: var(--br);
	background: var(--b2);
}
