/* =========================
   Farben
========================= */

:root {
  --dunkelgruen: #3A4A3F;
}

/* =========================
   Fonts
========================= */

@font-face {
  font-family: 'Britannic';
  src: url('../font/Britannic Bold Regular.ttf') format('truetype');
}

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

@font-face {
  font-family: 'Cambay-Bold';
  src: url('../font/Cambay-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins-Light';
  src: url('../font/Poppins/Poppins-Light.ttf') format('truetype');
}

/* =========================
   Reset & Body
========================= */

body {
  margin: 0;
  font-family: 'Poppins-Light', sans-serif;
  color: #000;
  overflow: hidden;
}

/* =========================
   Hintergrundbild
========================= */

.background-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(1.15);
}

/* Weissliches Overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.35);
  z-index: -1;
}

/* =========================
   Content
========================= */

.quiz-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  box-sizing: border-box;
}

/* =========================
   Texte
========================= */

.quiz-title {
  font-family: 'Britannic', sans-serif;
  font-size: 48px;
  margin: 0 0 16px 0;
  color: #000;
}

.quiz-subtitle {
  font-family: 'Poppins-Light', sans-serif;
  font-size: 18px;
  margin: 0 0 56px 0;
  color: #000;
}

/* =========================
   Auswahlfelder
========================= */

.quiz-options {
  display: flex;
  gap: 32px;
}

.quiz-card {
  width: 240px;
  height: 140px;
  background-color: var(--dunkelgruen);
  color: #ffffff;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Cambay-Bold', sans-serif;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quiz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
