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;
}

.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; /* or whatever height you need */
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical 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;
}
.contactform {
  display: block;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

