@import "https://fonts.googleapis.com/css2?family=VT323&display=swap";
html,
body,
#root {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #111827;
  color: #fff;
  font-family: VT323, monospace;
}
.app-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #111827;
}
* {
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1f2937;
}
::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}
button {
  font-family: VT323, monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@keyframes rainbow {
  0% {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}
@keyframes pulse-scale {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes flash-red {
  0%,
  to {
    background-color: #3b82f6;
    box-shadow: 0 4px #1e40af;
    transform: scale(1);
  }
  50% {
    background-color: #ef4444;
    box-shadow: 0 4px #991b1b;
    transform: scale(1.1);
  }
}
.title-juice {
  animation: rainbow 3s linear infinite, pulse-scale 2s ease-in-out infinite;
}
