/*
 * Phoenix v2.0.0
 * A basic Jekyll theme by Jeffrey DiVincent.
 */
html {
    background: url("images/blur.png");
    background-size: cover;
    background-position: center;
    --default: black;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Ubuntu", "Helvetica Neue", sans-serif;
    margin: 0;
    background: #eeefeecc;
    min-height: 100vh;
}
a {
    text-decoration: none;
    opacity: 0.8;
    color: #1da1f1;
}
a:hover {
    opacity: 0.6;
}
.no-behave-link {
    opacity: 1;
    color: black;
}
p.no-behave-link {
    color: black;
}
h1, h2, h3, p {
    margin: 10px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 26px;
    margin: 5px;
}
.nav-space {
    height: 80px;
}
@media (min-width: 886px) {
    .content {
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
    }
    .only-mob {
        display: none;
    }
    .post-content > p > img {
        border-radius: 15px;
        width: 600px;
    }
}
@media (max-width: 885px) {
    .content {
        padding: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .post-content > p > img {
        border-radius: 15px;
        width: 100%;
    }
    .project.project {
        display: inline-block;
        grid-template-columns: auto;
    }
    .project > .banner {
        margin: auto;
    }
}
.nav {
    background: rgba(33, 33, 33, 0.9);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    height: 30px;
    padding: 30px;
    padding-top: 25px;
    z-index: 100;
    width: calc(100% - 60px);
    position: fixed;
    left: 0;
    top: 0;
}
.nav > div {
    max-width: 850px;
    margin: auto;
}
.nav > div > .mas > a {
    color: white;
    font-size: 18px;
}
.mas.alt {
    color: var(--default);
    transform: translateY(-15px);
}
.logo {
    color: white;
    font-size: 28px;
}
.footer {
    text-align: center;
    opacity: 0.5;
    height: 100px;
}
.header {
    text-align: left;
    padding: 20px;
    padding-top: 40px;
}
.social {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.badge {
    display: block;
    border-radius: 50px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    display: inline;
    color: white;
    opacity: 1;
    cursor: pointer;
    margin: 7px;
}
.badge:hover {
    opacity: 0.8;
}
.badge.twitter {
    background: #1da1f1;
}
.badge.reddit {
    background: #fe4500;
}
.badge.youtube {
    background: #fe0000;
}
.badge.github {
    background: #23282e;
}
.badge.email {
    background: #444;
}
.badge.linkedin {
    background: #1d70bc;
}
.project {
    display: grid;
    grid-template-columns: 200px auto;
    grid-gap: 10px;
    margin-top: 10px;
}
.banner {
    border-radius: 10px;
    height: 120px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #444;
}
.gallery {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 10px;
}
.project > .banner {
    width: 200px;
    background-size: contain;
}
.project > .desc {
    
}
.project > .desc > a {
    transform: translateY(-32px);
}
.alt, .alt > * {
    opacity: 0.7;
    font-size: 16px;
}
.mas, .date {
    float: right;
    text-align: right;
}
.mas {
    color: #1da1f1;
}
.date {
    transform: translateY(-42px);
    opacity: 0.5;
}
.nav > div > .mas {
    margin-left: 20px;
}
.blog > a {
    transform: translateY(-69px);
}
.post > p {
    margin-bottom: 5px;
}
.hero {
    text-align: left;
    max-width: 600px;
    margin: auto auto 20px;
}
.hero > img {
    float: left;
    border-radius: 50%;
    width: auto;
    height: 100px;
    margin-right: 30px;
}
.links {
    text-align: center;
}
p > img {
    display: inherit;
    margin: auto;
    max-width: 100%;
}
.hr {
    width: 100%;
    height: 2px;
    background: #88888888;
    margin: 10px 0;
}
.highlight {
    overflow: auto;
}
.tag {
    background: #88888822;
    padding: 5px 8px;
    margin: 3px;
    color: var(--default);
    border-radius: 10px;
}
.license {
    text-align: center;
}
.flip {
    transform: rotate(180deg);
}
@media (prefers-color-scheme: dark) {
    body {
        background: #202020cc;
        --default: white;
    }
    body, h1, h2, h3, p {
        color: white;
    }
}