:root {
  --bg-color: #242424;
  --bg-secondary: #252525;
  --text-color: #1f2933;
  --text-muted: #6b7280;
  --accent: #ea580c;
  --accent-soft: rgba(234, 88, 12, 0.1);
  --border-color: #fcd9bd;
  --shadow-soft: 0 18px 45px rgba(148, 64, 15, 0.22);
}

[data-theme="dark"] {
  --bg-color: #020617;
  --bg-secondary: #020617;
  --text-color: #141414;
  --text-muted: #9ca3af;
  --accent: #fdba74;
  --accent-soft: rgba(253, 186, 116, 0.18);
  --border-color: #7c2d12;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
}
#main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    width: 75%;
    margin: 0 auto;
}
#title-container {
    margin: 2rem 2rem 2rem 2rem;
    padding: 1rem 1rem 1rem 1rem;
    height: 150px;
    /* You can set a fixed height here if needed, e.g., height: 150px; */
}
#title{
    color: var(--text-color);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
}
#background-img {
    width: auto;
    max-width: 600px;
    height: auto;
}