@import './normalize.css';
@import './colors.css';
@import './fonts.css';

* {
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-color);
	background-color: var(--background-color);
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 1rem;
}

ul {
	list-style: none;
}

button {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	cursor: pointer;
	font-size: 1rem;
	border-radius: 4px;
	transition: background-color 0.2s ease;
}

button:hover {
	background-color: #4338ca;
}
