body {
  margin: 0;
  padding: 0;
  background-color: #cccc70ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* more reliable than height */
  font-family: sans-serif;
  text-align: center;
}

img {
  max-width: 384px;   /* keeps your intended size */
  width: 100%;        /* allows shrinking on small screens */
  height: auto;
  margin-bottom: 20px;
  display: block;     /* removes inline spacing quirks */
}


p {
  font-size: clamp(16px, 2.5vw, 22px);
  color: #333;
  font-weight: 600;
}
