.search-wrapper {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  align-items: center;
  font-size: xx-large;
}

input {
  font-size: 1rem;
  block-size: 2.5em;
}

h1{
  display: grid;
  align-items: center;
  place-items: center;
}

.user-cards {
  display: grid;
  gap: .25rem;
  margin-top: 1rem;
  align-items: center;
  place-items: center;
}

.card {
  border: 1px solid black;
  padding: .5rem;
  align-items: center;
}

.card > .header {
  margin-bottom: .25rem;
  color: chocolate;
  align-items: center;
}

.card > .body {
  font-size: .8rem;
  color: #777;
  align-items: center;
}

.card > #myIframe{
  align-items: center;
}

.hide {
  display: none;
}

/* Light theme (default) colors */
:root {
  --background-color: #ffffff;
  --text-color: #222222;
}

/* Dark theme colors for users who prefer it */
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: hsl(228, 5%, 15%); /* A dark gray, not pure black */
    --text-color: hsl(228, 5%, 80%); /* An off-white, not pure white */
    color-scheme: dark; /* Ensures built-in UI elements (inputs, etc) also follow dark mode */
  }
}

/* Apply the variables */
body {
  background-color: var(--background-color);
  color: var(--text-color);
  align-items: center;
}