:root {
    --highlight-color: rgb(255, 255, 255);
    --primary-color: rgb(81, 81, 81);
    --secondary-color: rgb(66, 66, 72);
    --tertiary-color: rgb(81, 81, 81);

    --complementary-one: rgb(21, 24, 27);
    --complementary-two: #29292c;

    --code-color: rgb(216, 216, 216);

    --warning: rgb(247, 172, 59);
}

#background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    border-image: url("/assets/background.png");
    border-image-width: 48px 48px;
    border-image-slice: 36 fill;

    z-index: -10;
}

#main-container {
    top: 12px;
    bottom: 0;
    left: calc(72px + 15%);
    right: 0;
    width: calc(85% - 224px);
    padding: 48px;
    background-color: #2d2d30;
    position: relative;
}
#main-container.mobile {
    left: 48px;
    width: calc(100% - 192px);
}

html {
    position: relative;
    min-height: 100vh;
}

body {
    margin: 0;

    background-color: var(--complementary-two);
    color: var(--highlight-color);
}

.heading-content {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 28px;
    margin: 0px;

    text-shadow: 0px 4px var(--complementary-one);
}

.heading2-content {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 20px;
    margin: 0px;

    text-shadow: 0px 4px var(--complementary-one);
}

.main-content {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;

    color: var(--highlight-color);

    text-shadow: 0px 2px var(--complementary-one);
}

.code-block {
    color: var(--code-color);
    background-color: #111;
    padding: 2px;
    margin: 2px;

    font-size: 12px;
}

.image-showcase {
    float: right;
    width: 25%;

    margin-left: 36px;
}

.image-showcase img {
    width: 100%;
}
.image-showcase i {
    display: block;
}

a:link {
    color: rgb(136, 188, 255);
    transition: 0.2s;
}

a:visited {
    color: rgb(136, 188, 255);
}

a:hover {
    color: rgb(197, 255, 233);
    transition: 0.2s;
}

i {
    color: rgb(197, 255, 233);
    transition: 0.2s;
}

img.outlined {
    -webkit-filter: drop-shadow(2px 2px 0 white) drop-shadow(-2px 2px 0 white) drop-shadow(2px -2px 0 white) drop-shadow(-2px -2px 0 white);
    filter: drop-shadow(2px 2px 0 white) drop-shadow(-2px 2px 0 white) drop-shadow(2px -2px 0 white) drop-shadow(-2px -2px 0 white);
}

img.pixelated {
    image-rendering: pixelated;
}