html {
    height: 100%;
}

body {
    font-family: Arial, serif;
    color: white;
    background: #2c2c2c;
    --tile-color: #262626;
    margin: 0 0 0 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.quote {
    margin-left: 20px;
    padding-left: 20px;
    border-left: solid white 1px;
    font-style: italic;
}

.tile {
    /*word-break: break-all;*/
    position: relative;
    margin: 10px 0 0 10px;
    box-shadow: 10px 10px var(--tile-color);
    background: black;
    width: 90%;
    height: 90%;
    padding: 1% 1% 1% 1%;
}

.tile > h1, .tile > p {
    color: white;
    margin-left: 10px;
}

.tile p {
    font-size: 24px;
}

.tile:hover {
    margin: 5px;
    box-shadow: 15px 15px var(--tile-color);
}

/*.mch {*/
/*    background-image: url("/static/ractraced_LiquidDev_4561.png");*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*}*/


/*.mch p {*/
/*    color: white;*/
/*    font-size: 24px;*/
/*}*/

.mch {
    position: relative;
    overflow: hidden;
}

.mch::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("/static/ractraced_LiquidDev_4561.png") center / cover no-repeat;

    filter: blur(4px);
    transform: scale(1.1);

    z-index: 0;
}

.mch > * {
    position: relative;
    z-index: 1;
}

.pwned {
     background-color: black;
}

.pwned p {
    color: white;
}

.tile-area {
    vertical-align: middle;
}

.nametag {
    margin-left: 20px;
}

.blog-entries {
    /*margin-top: 40px;*/
    /*margin-left: 40px;*/
    /*margin-bottom: 40px;*/
    width: 40%;
    margin: 0 auto;
}

p {
    color: white;
    line-height: 1.5;
}

.post-body {
    width: 40%;
    margin: 0 auto;
}

.title-area {
    width: 40%;
    margin: 0 auto;
}

/*.blog {*/
/*    background-image: url("/static/blog_image.png");*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*}*/

.blog {
    position: relative;
    overflow: hidden;
}

.blog::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("/static/blog_image.png") center / cover no-repeat;

    filter: blur(4px);
    transform: scale(1.1);

    z-index: 0;
}

.blog > * {
    position: relative;
    z-index: 1;
}

.github {
    position: relative;
    overflow: hidden;
}

.github::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("/static/github_bg.png") center / cover no-repeat;

    filter: blur(8px);
    transform: scale(1.1);

    z-index: 0;
}

.github > * {
    position: relative;
    z-index: 1;
}

