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

* {
	margin: 0;
}

body {
	font-family: 'Space Grotesk', 'Arial', sans-serif;
	color: #444;
	font-size: min(max(1rem, 4vw), 20px);
	background-color: #E0E0DB;
	margin: 0;
	padding: 0;
}

h1 {
	font-family: 'Archivo Black', sans-serif;
	color: #2A2829;
	margin-bottom: 1rem;
	margin-top: 1rem;
}

.content {
	text-align: center;
	justify-content: center;
	margin: 5rem;
}

.intro-background {
	background-image: url('/img/header_skull.jpeg');
	background-size: cover;
	background-position: center;
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.intro-background h1 span {
	background-color: rgba(250, 235, 215, 0.75);
	text-transform: uppercase;
	line-height: 1.5;
}

.featured-products {
	justify-content: center;
	display: flex;
	gap: 0.3rem;
	margin: auto;
}

.featured-products a {
	display: flex;
	font-size: 1rem;
	text-decoration: none;
	flex-direction: column;
	margin-right: 1rem;
	margin-left: 1rem;
}

.featured-products img {
	height: 200px;
	width: 200px;
	border-radius: 100%;
	margin-bottom: 0.5rem;
}

.slide-wrapper {
	width: 90%;
	max-width: 1536px;
	margin-inline: auto;
	position: relative;
	height: 240px;
	margin-top: 5rem;
	overflow: hidden;
	mask-image: linear-gradient(to right,
			rgba(0, 0, 0, 0),
			rgba(0, 0, 0, 1) 20%,
			rgba(0, 0, 0, 1) 80%,
			rgba(0, 0, 0, 0));
}

@keyframes scrollLeft {
	to {
		left: -200px;
	}
}

.slide-item {
	width: 200px;
	height: 100px;
	position: absolute;
	left: max(calc(200px * 3), 100%);
	animation-name: scrollLeft;
	animation-duration: 30s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.item1 {
	animation-delay: calc(30s / 3 * (3 - 1) * -1);
}

.item2 {
	animation-delay: calc(30s / 3 * (3 - 2) * -1);
}

.item3 {
	animation-delay: calc(30s / 3 * (3 - 3) * -1);
}

.contactform {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 50px;
}

.contactform form {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 400px;
}

.contactform button {
	width: 50%;
	max-width: 200px;
	margin-top: 0.5rem;
}
