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

html,
body {
  min-height: 100%;
}

body {
  background-color: #000;
  color: #fff;
  font-family: sans-serif;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(2rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem);
  background-color: #000;
  background-image: url('images/pumpkin_and_potatoes.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: clamp(3.75rem, 12vw, 7.5rem);
  line-height: 1.1;
  width: 100%;
  text-align: center;
}

.contact-info {
  width: 100%;
  margin-top: clamp(1.5rem, 4vh, 3rem);
  text-align: center;
}

.contact-info p + p {
  margin-top: 1rem;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info a img {
  width: 1.25em;
  height: 1.25em;
  object-fit: contain;
}
