/* Base styles */
html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}

/* Background image */
.bg {
  width: 100%;
  height: 100%;
}

/* Portrait image */
.portrait {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
}

/* Info image */
.info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 500px;
}

/* Responsive adjustments */
@media (min-aspect-ratio: 1/1) {
  .portrait {
    object-fit: contain;
  }
}

/* Development banner */
.dev-banner {
  background-color: yellow;
  color: black;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 5px 0;
  font-family: sans-serif;
  text-align: center;
}