:root {
  --background: #090a28;
  --foreground: #eceae5;
  --accent: #99c1f1;
}


.content img {
  border-radius: 12px;
  border: 2px dotted var(--accent);
  opacity: 0;
  object-fit: scale-down;
  transform: translateY(8px);
  animation: terminal-enter 0.4s ease-out forwards;
}

@keyframes terminal-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
