/* Orange Light scheme (Default) */
/* Can be forced with data-theme="light" */
[data-theme="light"],
:root:not([data-theme="dark"]) {
  --primary: #fb8c00;
  --primary-hover: #f57c00;
  --primary-focus: rgba(251, 140, 0, 0.125);
  --primary-inverse: #fff;
}

/* Orange Dark scheme (Auto) */
/* Automatically enabled if user has Dark mode enabled */
@media only screen and (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --primary: #fb8c00;
    --primary-hover: #ff9800;
    --primary-focus: rgba(251, 140, 0, 0.25);
    --primary-inverse: #fff;
  }
}

/* Orange Dark scheme (Forced) */
/* Enabled if forced with data-theme="dark" */
[data-theme="dark"] {
  --primary: #fb8c00;
  --primary-hover: #ff9800;
  --primary-focus: rgba(251, 140, 0, 0.25);
  --primary-inverse: #fff;
}

/* Orange (Common styles) */
:root {
  --form-element-active-border-color: var(--primary);
  --form-element-focus-color: var(--primary-focus);
  --switch-color: var(--primary-inverse);
  --switch-checked-background-color: var(--primary);
}

html {
  background: linear-gradient(275deg, #fff 0%, #d8e5fd 100%);
}

nav {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.7);
  position: sticky;
  top: 0;
}
strong {
  color: #fb8c00;
  font-weight: 600;
}

h1,
p,
h2 {
  max-width: 50ch;
  margin-left: auto;
  text-align: center;
  margin-right: auto;
}

h1,
h2 {
  margin-bottom: var(--spacing);
}

p {
  margin-bottom: 0px;
}

.image-container {
  margin: 1.5rem auto;
  width: 80%;
  max-width: 500px;
  border-radius: 100%;
  aspect-ratio: 1 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.small-image {
  width: 50%;
  max-width: 300px;
}

.flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: auto;
}

.check-item {
  padding: 1rem;
  font-weight: bold;
}

.check-item svg {
  color: #fb8c00;
}

.step-div {
  text-align: center;
  max-width: 30ch;
}

.step-div svg {
  color: #fb8c00;
  height: 2.5rem;
  width: 2.5rem;
}

footer {
  background-color: var(--color);
  color: white;
}

footer p {
  color: white;
  text-align: left;
}

.left {
  justify-content: start;
}

.left div {
  margin-right: auto;
}
