@import url('https://fonts.googleapis.com/css2?family=Bungee+Hairline&family=Commissioner:wght@100..900&display=swap');

body {
  font-family: 'Commissioner', 'Segoe UI', 'Arial', sans-serif;
  font-size: 80%;
}

.font-design {
  font-family: 'Bungee Hairline', 'Commissioner', 'Segoe UI', 'Arial';
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bungee Hairline', 'Commissioner', 'Segoe UI', 'Arial',
    sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.1rem;
}
h6 {
  font-size: 1rem;
}

.button {
  display: inline-block;
  font-family: 'Commissioner', 'Segoe UI', 'Arial', sans-serif;
  font-weight: 200;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.6); /* blue-600/80 */
  color: #fff;
  border: 1.5px solid rgba(59, 130, 246, 0.3); /* blue-500/30 */
  box-shadow: 0 2px 8px 0 rgba(30, 64, 175, 0.07);
  transition: background 0.2s, border 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  backdrop-filter: blur(2px);
  text-align: center;
  font-size: 0.95rem;
}
.button:hover,
.button:focus {
  background: rgba(30, 64, 175, 0.92); /* blue-700/90 */
  border-color: rgba(59, 130, 246, 0.5); /* blue-500/50 */
  color: #fff;
  outline: none;
  box-shadow: 0 4px 16px 0 rgba(30, 64, 175, 0.13);
}
.button:active {
  background: rgba(30, 64, 175, 1);
  border-color: rgba(59, 130, 246, 0.7);
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
