:root {
  color-scheme: light dark;
  --bg-light: linear-gradient(135deg, #0078d4, #0054A5);
  --bg-dark: linear-gradient(135deg, #0a0a0a, #202020);
  --text-color: #fff;
  --accent: #ffd43b;
}

@font-face {
    font-family: 'Jamille ITC Std Regular';
    src: url('../fonts/jamilleitcstd-book.otf') format('opentype');  
    font-weight: 400;
    /*font-style: normal;*/
    font-display: swap;
  }

  @font-face {
    font-family: 'Jamille ITC Std Bold';
    src: url('../fonts/jamilleitcstd-bold.otf') format('opentype');
    font-weight: 400;
    /*font-style: normal;*/
    font-display: swap;
  }

  @font-face {
    font-family: 'Jamille ITC Std Black';
    src: url('../fonts/jamilleitcstd-black.otf') format('opentype');
    font-weight: 400;
    /*font-style: normal;*/
    font-display: swap;
  }

body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  
    color: var(--text-color);
    text-align: center;
    transition: background 1s ease;
}

@media (prefers-color-scheme: dark) {
  body {
    background: var(--bg-dark);
  }
}

.container {
  max-width: 600px;
  padding: 2rem;
  animation: fadeIn 1.2s ease-in-out;
}

.icon {
  font-size: 5rem;
  animation: bounce 2s infinite ease-in-out;
}

h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  font-family: "Jamille ITC Std Black", sans-serif;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
  font-family: "Jamille ITC Std Regular", sans-serif;
}

footer {
  margin-top: 2rem;
  font-size: 1rem;
  font-family: "Jamille ITC Std Regular", sans-serif;
  opacity: 0.7;
}

header {
  margin-bottom: 8rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
