:root {
  --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --sk-lt-blue: #00c4d9;
  --sk-dk-blue: #004054;
  --sk-lt-grey: #e9edee;
  --sk-dk-grey: #d1d3d4;
}

html {
  font-family: var(--font-sans);
}

.bg-wrapper {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: scroll;
}

.bg-img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* ✅ This centers the image */

  min-width: 50rem;
  max-width: 150rem;
  width: 100%;
  height: auto;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  height: 100vh;
  background-color: var(--sk-lt-grey);
  /*
  background-image: url("assets/images/sb2-swoosh.svg"); use a transparent PNG or partially covering image
  background-size: 150rem;
  background-position: center;
  background-repeat: no-repeat; */
}

.header-image {
  width: 25rem;
  background-color: white;
  border-radius: 1rem;
  padding-top: 0.35rem;
  padding-bottom: 0.25rem;
}

.download-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 100px;
  color: black;
  border: 1px solid oklch(92.2% 0 0);
  border-radius: 0.5rem;
  padding: 0.5rem;
  /* font-size: 0.875rem; */
  justify-content: center;
}

svg {
  color: white;
}

.primary-btn {
  background: var(--sk-lt-blue);
  color: white;
  border-color: var(--sk-lt-blue);
  transition: background-color 0.25s ease, border-color 0.25s ease,
    color 0.25s ease;
}

.primary-btn:hover {
  background: var(--sk-dk-blue);
  color: white;
  border-color: var(--sk-dk-blue);
}

.secondary-btn {
  background: white;
  border-color: oklch(92.2% 0 0);
  transition: background-color 0.25s ease, border-color 0.25s ease,
    color 0.25s ease;
}

.secondary-btn:hover {
  background: var(--sk-lt-grey);
  border-color: var(--sk-lt-grey);
}

.text-sm {
  font-size: 1rem;
  font-weight: bold;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 4rem;
  border-radius: 1rem;
  margin-top: 3rem;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05),
    0px 1px 4px rgba(0, 0, 0, 0.08) !important;
}

.card-content {
  padding: 0.5rem;
  display: flex;
  gap: 5rem;
}

.main-container {
  display: flex;
  flex-direction: column;
}

footer {
  padding: 0.5rem;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

footer {
  a {
    color: black;
    text-decoration: none;
  }
}
