/*==================================================
    RESET
==================================================*/
/* Remove browser default spacing */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*==================================================
    ROOT VARIABLES
==================================================*/
/*
    Site-wide color palette.
    These variables make it easy to update the
    appearance of the entire website later.
*/
:root {
    --background: #070B14;
    --background-dark: #04060D;
    --text: #F5F7FA;
    --text-secondary: #B6C2D1;
    --text-glow-color: #9FE9FF;
    --node: #7FD6FF;
    --node-glow: #BFEFFF;
    --accent: #62FFB0;
}

/*==================================================
    HTML / BODY
==================================================*/
html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;
}

.empty-space {
    height: 35dvh;
}

.mg-page-empty-space {
    height: 15dvh;
}

/*==================================================
    MAIN CONTENT
==================================================*/
main {
    position: relative;
    background: transparent;
}

.contentWidth {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.paragraphContainerCard {
    max-width: 900px;
    margin: 0 auto 90px;
    margin-top: 45px;
    font-family: "Kode Mono";
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-glow-color);
    background-color: rgba(0, 0, 0, .30);
    padding: 8px 5%;
    background: rgba(10, 25, 35, .45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(120, 220, 255, .35);
    border-radius: 22px;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, .35),
        0 0 20px rgba(120, 220, 255, .18);
}

.nestedParagraphInCard {
    width: 100%;
    font-family: "Kode Mono";
    font-size: 1.15rem;
    line-height: 1.9;
}

.paragraph-divider-line {
    /* Dimensions & Positioning */
    width: 95%;
    height: 2px;
    z-index: 200000;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 15%,
            rgba(255, 255, 255, 1) 85%,
            rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 2px rgba(255, 255, 255, 0.8);
    border: none;
    outline: none;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}


footer {
    border-top: #7FD6FF 3px solid;
    border-radius: 30px;
}

footer p {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 12px;
    font-family: 'zen dots';
    border-top: #7FD6FF;
    border-radius: 30px;
}


/*==================================================
    LINKS
==================================================*/
a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 500px) {
    .empty-space {
        height: 16dvh;
    }

}