@import url(../prism/prism-light.css);
@import url(../style.css);

:root {
    --background: rgb(1, 0, 32);
    --foreground: rgb(208, 208, 208);
    --footer-bg: rgb(29, 27, 88);
    --header-bg: rgb(29, 27, 88);
    --footer-fg: rgb(208, 208, 208);
    --header-fg: rgb(208, 208, 208);
}

* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

main {
    /* min-height: 100vh; */
    position: relative;
    z-index: 1;
    background-color: var(--background);
    color: var(--foreground);
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

header>.sub-line {
    margin-top: 0.5em;
    text-align: center;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

body {
    width: auto;
    padding: 10px;
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(0deg, rgb(0, 0, 0), rgb(122, 122, 122));
    color: var(--background);

    font-size: medium;
    font-family: Arial, Helvetica, sans-serif;
    
    padding-bottom: 50px;
    padding-left: 30px;
}

body>* {
    margin-right: 30%;
}

@media (max-width: 800px) {
    body>* {
        margin-right: 10%;
    }
}

@media (max-width: 500px) {
    body {
        font-size: small;
        padding: 0;
    }

    body>* {
        margin: 0;

    }
}

header>.top-heading {
    font-variant: small-caps;
    font-weight: 500;
    
    text-shadow: 0px 0px 2px black;
}
header>.top-heading{
    font-size: 6vw;
}

@media (min-width: 1200px) {
    header>.top-heading{
        font-size: 60px;
    }
}
footer a:hover {
    color: pink !important;
}

footer a:visited {
    color: unset;
}

footer {
    padding-left: 20px;
    padding-bottom: 20px;
    color: var(--footer-fg);
    position: sticky;
    bottom: 0;
    left: 0;
    border-top: none;
    top: unset;
    width: auto;
    background-color: var(--header-bg);
}

ul,
ol {
    margin-left: 5%;
    list-style-position: inside;
}

li {
    line-height: 1.5em;
}

header {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 10px;
    color: var(--header-fg);
    position: sticky;
    top: 0;
    margin-bottom: -10px;
    padding-bottom: 20px;
    width: auto;
    background-color: var(--header-bg);
}

.after-space {
    margin-bottom: 10px;
}

.before-space {
    margin-top: 10px;
}

.text-indent {
    text-indent: 30px;
}

