* {
  box-sizing: border-box;
}
html,
body {
  height: 100dvh;
  overflow: clip;
}

#my-root {
  &:has(> [data-menu-open]) > [data-menu-open] ~ :not([data-menu-open]) {
    z-index: 0;
  }

  > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  display: flex;
  justify-content: center;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr 1fr;
}

.glass {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  z-index: 1;
  padding: 1rem;
  font: 100% system-ui;
}
