:root {
    font-family: "Roboto Flex", system-ui, -apple-system, sans-serif;
}
body {
    width: 100%;
    margin: 0;
    height: auto;
}
pageHead {
    position: fixed;
    font-family: "Poppins", system-ui, sans-serif;
    display: block;
    font-weight: 700;
    height: 3rem;
    width: 100%;
    background: #30aec4a9;
    backdrop-filter: blur(5px);
    z-index: 2;
}
leftDivision {
    width: 30%;
    height: 3rem;
    display: inline-flex;
    justify-content: space-evenly;
    align-items: center;
}
#logo {
    height: 2rem;
    width: 2rem;
}
navbar {
    display: flex;
    float: right;
    height: 3rem;
    width: 70%;
    align-items: center;
    justify-content: space-evenly;
}
tools, docs, home, blog {
    display: flex;
    align-items: center;
}
a {
    padding: 1rem;
    color: black;
    text-decoration: none;
}
pageContent {
    display: block;
    position: absolute;
    margin-top: calc(3rem + 2px);
    height: auto;
    width: 100%;
    z-index: 1;
}
h1 {
    font-size: 2rem;
    display: flex;
    width: 100%;
    justify-content: center;
    font-weight: 1000;
    text-decoration: underline;
    text-align: center;
    font-family: "Poppins", system-ui, sans-serif;
}
h2 {
    font-weight: 700;
    text-decoration: none;
}
cSpacer {
    display: inline-block;
    height: 6rem;
    width: 100%;
}
gridDivision {
    font-size: 1rem;
    display: grid;
    justify-items: center;
    align-items: center;
    height: 24rem;
}
imageDivision {
    scale: 1.25;
}
textDivision {
    display: grid;
    text-align: center;
    justify-items: center;
    > button {
        display: grid;
        width: 10rem;
        height: 3rem;
        padding: 1rem;
        background: #2b8b46;
        border: none;
        border-radius: 25px;
        font-weight: bold;
        font-size: 1rem;
        font-family: "Poppins", system-ui, sans-serif;
        align-content: center;
    }
}
@media (prefers-color-scheme: dark) {
    :root {
        font-family: "Roboto Flex", system-ui, -apple-system, sans-serif;
        color: white;
    }
    body {
        background: #2c2c2c;
    }
    pageHead {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(126deg, #367AFF 0%, #6803B7 43.75%, #44007A 100%);
        box-shadow: 0px 0px 5px 0px #FFFFFF00;
    }
    tools, docs, home, blog {
        color: white;
    }
}