*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	font-family: 'FiraGO', sans-serif;
	scroll-behavior: smooth;

	--primary-color: #9b0000;
}

body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

#root,
#__next {
	isolation: isolate;
}

.button {
	display: flex;
	padding: 0.875rem;
	align-items: center;
	gap: 1rem;
	border-radius: 0.75rem;
	border: 0px solid rgba(18, 18, 20, 0.56);
	cursor: pointer;

	color: var(--primary-color);
	font-size: 0.889rem;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 0.889rem */
	letter-spacing: 0.00888rem;
	text-decoration: none;
}

.button:hover {
	border-radius: 0.75rem;
	border: 0px solid #121214;
	background: rgba(18, 18, 20, 0.1);
}

.button__active {
	border-radius: 0.75rem;
	border: 0px solid #121214;
	background: rgba(60, 60, 66, 0.1);
}
