/* base.css */
html,
body {
  width: 100%;
  height: 100%;
  font-family: var(--font-family);

  /* Фоновый GIF «из космоса» */
  background: url('/public/High_Tech.gif') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

/* Сообщение при отключённом JavaScript */
noscript {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffdddd;
  color: #900;
  text-align: center;
  padding: 12px;
  font-size: 1rem;
  z-index: 500;
}

/* Анимация плавного появления */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

