:root {
  --backdrop-shift: 0px;
  color: #f7f3ed;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  color: #ffffff;
}

img {
  display: block;
}

.backdrop__img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: auto;
  transform: translateY(var(--backdrop-shift));
  will-change: transform;
  pointer-events: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.teapots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  place-items: center;
}

.logo {
  position: sticky;
  top: 0;
  z-index: 100;
  pointer-events: none;
  fill: white;
}

h1, h2, h3 {
  margin: 0;
}

main {
  h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin: 0;
    opacity: 0;
    height: 0;
  }
}

.content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 5rem);
  max-width: 70ch;
  margin: 0 auto;
  /* text-shadow: 0 2px 10px rgba(149, 32, 0, 0.55); */
}

p {
  background: rgba(255, 200, 170, 0.55);
  padding: 1rem 1.25rem;
  /* border-radius: 0.75rem; */
  margin-bottom: 1rem;
  backdrop-filter: blur(20px);
}