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

body, html {
  height: 100%;
  width: 100%;
  background: #000;
  overflow: hidden;
  font-family: sans-serif;
}

/* Blurred neon image blended into black */
.background {
  position: absolute;
  inset: 0;
  background: url("images/neon.png") no-repeat center center;
  background-size: contain; /* keep original ratio, no stretch */
  filter: blur(40px) brightness(0.2); /* strong blur + dark fade */
  z-index: -1;
}

/* Center neon sign */
.content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.content img {
  max-width: 90%;
  width: 650px;
  height: auto;
  display: block;
}
