/* Reset css */
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-block: 0;
}

* {
	box-sizing: border-box;
}

/* End reset css */

/* global html elements */

section {
	padding: 0 2rem;
}

img {
	max-width: 100%;
	height: auto;
}

/* classes */

.container {
	max-width: 1330px;
	padding: 4rem 0;
	margin-inline: auto;
}

.button {
	font-family: var(--wp--preset--font-family--russo-one);
	font-size: var(--wp--preset--font-size--extra-small);
	padding: 16px 22px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
}

.button--primary {
	background: var(--wp--preset--color--accent-orange);
	color: var(--wp--preset--color--button-text-color);
}

.button--secondary {
	background: var(--wp--preset--color--accent-dark-green);
	color: var(--wp--preset--color--button-text-color);
}

.grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 2rem;
}

@media screen and (max-width: 930px) {
	.container {
		padding: 1rem 0rem;
	}
}
