*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: var(--c-t1);

    color: var(--c-black-90);
    display: flex;
    flex-direction: column;
    font-size: 1.25rem;
    line-height: 1.6;
    min-height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
}

:root {
    --c-white-100: #ffffff;
    --c-white-90: rgba(255, 255, 255, 0.9);
    --c-white-80: rgba(255, 255, 255, 0.8);
    --c-white-70: rgba(255, 255, 255, 0.7);
    --c-white-60: rgba(255, 255, 255, 0.6);
    --c-white-50: rgba(255, 255, 255, 0.5);
    --c-white-40: rgba(255, 255, 255, 0.4);
    --c-white-30: rgba(255, 255, 255, 0.3);
    --c-white-20: rgba(255, 255, 255, 0.2);
    --c-white-10: rgba(255, 255, 255, 0.1);
    --c-white-5: rgba(255, 255, 255, 0.05);
    --c-off-white: rgb(237, 233, 242);


    --c-black-100: #000000;
    --c-black-80: rgba(0, 0, 0, 0.8);
    --c-black-70: rgba(0, 0, 0, 0.7);
    --c-black-60: rgba(0, 0, 0, 0.6);
    --c-black-50: rgba(0, 0, 0, 0.5);
    --c-black-40: rgba(0, 0, 0, 0.4);
    --c-black-30: rgba(0, 0, 0, 0.3);
    --c-black-20: rgba(0, 0, 0, 0.2);

    --c-header-1: #13151e;
    --c-header-2: #13171e;

    --c-panel-1: #36405c;
    --c-panel-2: #3d3f53;
    --c-panel-3: #2f3547;
    --c-panel-4: #2c2e3d;

    --c-t1: hsl(211, 49%, 66%);
    --c-t1-border: hsl(246, 78%, 18%);
    --c-t1-weak: hsla(211, 42%, 80%, 0.6);

    --c-success: hsl(141, 36%, 45%);
    --c-success-border: hsl(157, 67%, 8%);
    --c-success-highlight: hsl(141, 57%, 66%);

    --c-warning: hsl(48, 62%, 52%);
    --c-warning-border: hsl(36, 87%, 9%);
    --c-warning-highlight: hsl(34, 20%, 80%);

    --c-danger: hsl(0, 59%, 58%);
    --c-danger-border: hsl(0, 87%, 9%);
    --c-danger-highlight: hsl(0, 27%, 67%);
}

/* Layout Elements */

.v1-layout {
    --footer-height: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2rem var(--footer-height);
    max-width: 1280px;
    margin-inline: auto;
    min-height: 100vh;
    /* border: 10px solid #000; */
}

.v1-footer {
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    display: flex;
    justify-content: center;
    background: var(--c-t1-weak);
    backdrop-filter: blur(10px) opacity(0.4);
    height: var(--footer-height);
    padding: 1.05rem;
    gap: 2.5rem;
    mask-image: linear-gradient(to bottom, transparent, black 12%);
}

/* More Specifid Elements */

.page-title {
    font-size: 2.25rem;
    font-weight: 800;
}

.page-content {
    /* border: 1px solid #000; */
    padding-inline: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */

}

.page-content-spacer {
    flex: .35;
}

.page-content>p {
    font-size: 1.5rem;
    max-width: 60ch;
    flex-grow: 1;

}