@font-face {
  font-family: "3270 Nerd Font";
  src: url("bleb/3270/3270NerdFont-Regular.ttf") format("truetype");
  font-weight: bold;
  text-shadow: 1px 0 0 currentColor;
  font-style: normal;

}

body {
  background: #325e85;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: '3270 Nerd Font', monospace;
}

#coot {
  width: 480px;
  height: 320px;
  background: #c7f0d8;
  border: 6px solid #222;
  position: relative;
  overflow: hidden;
  transform: scale(1.2);
}

#froggo {
  position: absolute;
  bottom: 60px;
  right: -4000px;
  width: 180px;
  height: auto;
  image-rendering: pixelated;

}

#text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(255,255,255,0.85);
  padding: 6px;
  font-size: 20px;
  min-height: 40px;
  font-weight: bold;
  text-shadow: 1px 0 0 currentColor;
  line-height: 1.4;
}

#hint {
  position: absolute;
  bottom: 0;
  right: 10px;
  font-size: 10px;
  opacity: 0.6;
  font-weight: bold;
  text-shadow: 1px 0 0 currentColor;
}


.pixel-heart {
  position: absolute;
  bottom: 60px;
  width: 80px;
  image-rendering: pixelated;
  animation: floatUp 3s linear forwards;
}

@keyframes floatUp {
  from {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateY(-120px) scale(1.3);
    opacity: 0;
  }
}
