@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
:root {
    --main-color: {
        {
            blog.theme
        }
    }
    ;
    --main-font: "Quicksand",
    sans-serif;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
}

html,
body {
    background-color: var(--main-color);
    background-image: url("https://blog.hbidamian.xyz/image/X7XL446E8.png");
    background-repeat: repeat;
    background-position: center;
    background-size: 50px;
    margin: 0;
    font-family: var(--main-font);
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

a {
    color: white;
    text-decoration: none;
}

header {
    background-color: var(--main-color);
    box-shadow: 0 10px 10px var(--main-color), 0 10px 10px var(--main-color);
    color: #fff;
    padding-bottom: 20px;
    text-align: center;
}

header h1 {
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 26px;
}

header p {
    margin-top: 0px;
    margin-bottom: 0px;
}

header a {
    text-decoration: none;
    color: #fff;
}

main {
    font-family: 'Roboto', sans-serif;
    margin-top: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.container {
    color: white;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
}

.avatar {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0px 4px #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(https://hbidamian.xyz/assets/images/about.png);
    margin: 0 auto;
    margin-bottom: 20px;
}

.headerImage {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(https://blog.hbidamian.xyz/);
    margin-bottom: -120px;
    width: 100%;
    height: 200px;
}

.post,
#post {
    background-color: #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, .9), 0 0 10px rgba(0, 0, 0, .9), 0 0 10px rgba(0, 0, 0, .9), 0 0 10px rgba(0, 0, 0, .9);
    border-radius: 15px;
    padding: 40px;
}

.post a,
#post a {
    text-decoration: wavy underline #fff;
    color: #ccc;
}

#posts .post:not(:last-child) {
    margin-bottom: 20px;
}

.post img,
#post img {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    display: inherit;
}

.title {
    margin-top: 0px;
}

.time {
    margin-bottom: 40px;
}

.post_content p:last-child,
.post_content h1:last-child,
.post_content h2:last-child,
.post_content h3:last-child {
    margin-bottom: 0px;
}