@font-face {
  font-family: 'Minecraftia';
  src: url('fonts/Minecraftia-Regular.ttf') format('truetype');
  font-display: swap;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #F5F7F9;
}

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-thumb { background: #CDD5DC; border: 3px solid #F5F7F9; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #9AA5B1; }
::-webkit-scrollbar-track { background: #F5F7F9; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .2; }
}

@keyframes stripe {
  from { background-position: 0 0; }
  to { background-position: 22px 0; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
