/**
 * SiliconTrendz base styles.
 */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--stz-font-body);
	background: var(--stz-white);
	color: var(--stz-text-dark);
	font-size: 16px;
	line-height: 1.6;
}

img {
	display: block;
	width: 100%;
	object-fit: cover;
}

a,
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: inherit;
}

.stz-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Screen reader only */
.stz-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}