@font-face {
  font-family: 'LowresPixel-Regular';
  src: url('LowresPixel-Regular.otf') format('truetype');
}

body {
  background: #000000;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

.page-title {
  font-size: 74px;
  color: #c1c2d9;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'LowresPixel-Regular', sans-serif;
}

.robot-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.square {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;   /* adjust size here */
  height: auto;
  z-index: 0;     /* stays behind */
}

#body,
#ears,
#screen {
  z-index: 1;     /* stays on top */
}

.robot {
  position: relative;   /* IMPORTANT: not absolute */
  width: 256px;
  height: 256px;
}

.robot img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.bubble {
  width: 60%;
  max-width: 400px;
  margin-top: 5px auto 0;
  display: block;
}




























