html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pantalla {
  position: relative; /* ← ESTA LÍNEA ES CLAVE */
  width: 100vw;
  height: 100vh;

  background-image: url("https://media1.tenor.com/m/k9R-qgr1r0AAAAAd/bliss-windows-xp.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body {
  cursor: url("cursor.png"), auto;
}
.icono {
  position: absolute;
  top: 20px;      /* ajusta a ojo */
  left: 20px;     /* ajusta a ojo */

  width: 400px;   /* tamaño a ojo */
  height: auto;

  z-index: 10;    /* encima del fondo */
}
.ojos {
  position: absolute;

  top: 10px;     /* baja desde la parte superior de la PC */
  left: 80px;    /* centrado sobre la PC */

  width: 260px;   /* tamaño lógico para ojos */
  height: auto;

  z-index: 20;
  pointer-events: none;
}