/* Incluir la fuente PunkBabe desde TTF */
@font-face {
  font-family: 'PunkBabe';
  src: url('PUNKBABE TRIAL.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


body {
  margin: 0;
  background: #000000;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  position: relative;
  overflow: hidden;
  cursor: url("cursor.png"), auto;


}

/* Imagen principal */
.main-img {
  max-width: 90%;
  max-height: 90%;
  height: auto;
  z-index: 1;
}

/* Pupilas */
.pupil {
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 2;
}
.pupil.left { top: 51%; left: 45%; }
.pupil.right { top: 50%; left: 51%; }

/* Texto arriba de la imagen */
.top-text {
  position: absolute;
  top: 20px;              
  width: 100%;
  text-align: center;
  font-family: 'PunkBabe', cursive;
  font-size: 48px;        
  color: #ffffff;
  z-index: 3;
  pointer-events: none;    
  text-shadow: 2px 2px 4px #000000;
}
