/* ===========================
   GLOBAL STYLING
=========================== */

body{
    background:#000;
    color:#d9d9d9;
    font-family:Arial, Helvetica, sans-serif;
    font-size:20px;
    line-height:1.8;
}

a{
    color:#c8b6ff;
    text-decoration:none;
}

a:hover{
    color:#ffffff;
}

/* ===========================
   HEADER IMAGE
=========================== */

.hero-image{
    width:100%;
    height:900px;

    background-color:#111;
    background-image:url('https://real-eyes-realize.adifferentpath.org/assets/Banner%20Images/SOCIAL%20MEDIA%20BANNER.png');

    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;

    border:2px solid #444;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#999;
    font-size:32px;
    font-weight:700;

    margin-bottom:50px;
}

/* ===========================
   HEADINGS
=========================== */

h1,h2,h3,h4,h5,h6{
    color:#9d7dff;
    font-weight:900;
    text-shadow:3px 3px 5px #666;
    margin-top:2rem;
    margin-bottom:1rem;
    line-height:1.3;
}

h1{
    font-size:3.5rem;
}

h2{
    font-size:3rem;
}

h3{
    font-size:2.5rem;
}

h4{
    font-size:2.2rem;
}

h5{
    font-size:1.9rem;
}

h6{
    font-size:1.6rem;
}

/* ===========================
   ARTICLE CONTENT
=========================== */

.article-content{
    column-count:3;
    column-gap:50px;
    column-rule:1px solid #333;
    text-align:justify;
}

.article-content p{
    margin-bottom:1.5rem;
    color:#e0e0e0;
}

/* ===========================
   BLOCKQUOTES
=========================== */

blockquote{
    border-left:4px solid #7c5cff;
    padding-left:20px;
    color:#f5f5f5;
    font-style:italic;
}

/* ===========================
   IMAGES
=========================== */

img{
    max-width:100%;
    height:auto;
    border:1px solid #444;
}

/* ===========================
   ACCESSIBILITY
=========================== */

@media (max-width:992px){

    body{
        font-size:22px;
    }

    .article-content{
        column-count:1;
    }

    h1{
        font-size:3rem;
    }

    h2{
        font-size:2.5rem;
    }

    h3{
        font-size:2.2rem;
    }

}

.clear{
    clear:both;
}