/* ==== Minimal normalize.css bits ==== */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

body, h1, h2, h3, h4, h5, h6, p {
  line-height: 1.5;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
}

/* ==== Custom styles ==== */
body {
  background: linear-gradient(135deg, indigo, violet);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: white;
  padding: 1rem;
  text-align: center;
}

img.detective-icon {
  width: 100%;
  max-width: 512px;
  height: auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  border-radius: 16px;
}

h1.coming-soon {
  margin-top: 1rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem); /* responsive font size */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
