* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: #1a0000; /* Dark red-tinted background */
  color: #ffcccc;
}

main {
  padding: 1rem;
}

h1 {
  text-align: center;
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #ff6666;
}

#gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.img-container {
  width: 100%;
  aspect-ratio: 1;
  background: #330000;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dragon-img {
  width: 80%;
  height: 80%;
}
