* {
    box-sizing: border-box;
}

/** Breakpoint: 576px+ */
@media (min-width: 36em) {}

/** Breakpoint: 768px+ */
@media (min-width: 48em) {}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {}

/** Breakpoint: 1200px+ */
@media (min-width: 75em) {}

/** Breakpoint: 1400px+ */
@media (min-width: 87.5em) {}


html {
    font-size: 1em;    /* 16px = 1rem */
    min-height: 100%;
}

body {
    min-height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(100,100,100);
    background-image: url("../img/whw_0.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    margin: 0;
    padding: 0;
    text-shadow: 0px 0px 10px black;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-article h1, .blog-article h2, .blog-article h3 {
    color: white;
}

.blog-article p {
    line-height: 1.6;
    color: white;
}

.blog-article ul {
    line-height: 1.2;
    color: white;
}

.blog-article_ol {
    line-height: 1.2;
    color: white;
}

.blog-article li {
    line-height: 1.2;
    color: white;
}

.blog-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background-color: grey;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.blog-cta:hover {
    background-color: green;
}
