@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
    color: var(--text);
    font-family: "Verdana", "Aptos", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    /* 4. Add accessible line-height */
    line-height: 1.5;
    /* 5. Improve text rendering */
    -webkit-font-smoothing: antialiased;
    background-color: var(--foreground);
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
    font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
    text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root {
    height: 100vh;
    position: relative;
    isolation: isolate;
}

label > * {
    margin-top: 8px;
}
input {
    min-height: 40px;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    padding: 8px;
    background: none;
}
hr {
    width: 100%;
    border: 1px solid var(--secondary);
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline:auto;
    display: grid;
    justify-content: center;
    position: relative;
}

.active {
    font-weight: bold;
    text-decoration: underline;
    color: yellow !important;
}

/** =============== */
/* Help Navigation  */
/* ================ */
.informationBanner {
    background-color: var(--secondary);
    color: var(--text);
    padding: .5rem 2rem;
    /* border-radius: 0 0 25px 25px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 997;
    width: 100%;
}
.informationBanner a {
    color: var(--text);
    text-decoration: underline;
    font-weight: normal;
}
.informationBanner a:hover {
    color: var(--link);
}
.informationBanner_text {
    text-align: center;
    font-size: 11pt;
    font-weight: normal;
}
