/*
|--------------------------------------------------------------------------
| MHT BLOG STYLE
| STANDARD = MHT MAIN SITE
|--------------------------------------------------------------------------
*/


/* ========================================================================== */
/* GLOBAL */
/* ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}


body {
    background: #050505;
    color: #00ff88;
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    margin: 0;
    padding: 30px;
    scroll-behavior: smooth;
}


/* ========================================================================== */
/* MAIN CONTAINER */
/* ========================================================================== */

.container {
    max-width: 1200px;
    margin: auto;
}


/* ========================================================================== */
/* MAIN TITLE */
/* ========================================================================== */

h1 {
    color: #00ffff;
    font-size: 52px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px #00ffff;
    margin-bottom: 0;
    padding-bottom: 10px;
}


/* ========================================================================== */
/* HEADINGS */
/* ========================================================================== */

h2 {
    color: #00ffff;
    border-bottom: 1px solid #009966;
    padding-bottom: 8px;
    margin-top: 45px;
}


/* ========================================================================== */
/* BOX */
/* ========================================================================== */

.box {
    background: #090909;
    border: 1px solid #008844;
    padding: 20px;
    margin-top: 25px;
    box-shadow: 0 0 12px rgba(0, 170, 102, 0.5);
    border-radius: 5px;
}


/* ========================================================================== */
/* ARTICLE TITLE */
/* ========================================================================== */

.article-title {
    color: #00ffff;
    font-size: 28px;
}


.article-title a {
    color: #00ffff;
    text-decoration: none;
}


.article-title a:hover {
    color: #00ff88;
}


/* ========================================================================== */
/* ARTICLE EXCERPT */
/* ========================================================================== */

.excerpt {
    color: #88ffcc;
    line-height: 1.8;
    font-size: 17px;
}


/* ========================================================================== */
/* DATE / AUTHOR */
/* ========================================================================== */

.date {
    color: #00aa66;
    font-size: 14px;
}


/* ========================================================================== */
/* ARTICLE IMAGE */
/* ========================================================================== */

.article-image {
    display: block;
    max-width: 100%;
    height: auto;
    border: 1px solid #008844;
    box-shadow: 0 0 15px #00aa66;
    margin-top: 15px;
}


/* ========================================================================== */
/* READ MORE BUTTON */
/* ========================================================================== */

.button {
    display: inline-block;
    color: #050505;
    background: #00ff88;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: bold;
}


.button:hover {
    background: #00ffff;
}


/* ========================================================================== */
/* ARTICLE CONTENT */
/* ========================================================================== */

.content {
    color: #88ffcc;
    line-height: 1.9;
    font-size: 18px;
}


/* ========================================================================== */
/* INFORMATION */
/* ========================================================================== */

.info {
    line-height: 1.8;
    color: #88ffcc;
}


/* ========================================================================== */
/* LISTS */
/* ========================================================================== */

ul {
    list-style: none;
    padding-left: 0;
}


li {
    padding: 8px 0;
    border-bottom: 1px dotted rgba(0, 255, 136, 0.1);
}


li:before {
    content: "> ";
    color: #00ffff;
    font-weight: bold;
}


/* ========================================================================== */
/* FOOTER */
/* ========================================================================== */

.footer {
    margin-top: 70px;
    text-align: center;
    color: #00aa66;
    border-top: 1px solid #008844;
    padding-top: 20px;
}


/* ========================================================================== */
/* CURSOR */
/* ========================================================================== */

.cursor {
    animation: blink 1s infinite;
}


@keyframes blink {

    50% {
        opacity: 0;
    }

}