@import url("https://fonts.googleapis.com/css?family=Catamaran:300,500&display=swap");
@import url("https://cdn.materialdesignicons.com/4.5.95/css/materialdesignicons.min.css");

body
{
    font-family: Catamaran, sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: white;
    background-color: rgb(44, 46, 54);
    margin: 0;
}

h1, h2, h3
{
    font-weight: 300;
}

header
{
    background-color: rgb(24, 24, 27);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid white;
    padding: 25px;
}

header h1
{
    margin: 0;
}

header img
{
    height: 40px;
    padding-bottom: 2px;
    padding-left: 10px;
}

h2
{
    text-align: center;
    font-size: 2em;
}

h3
{
    font-size: 1.4em;
}

strong
{
    font-weight: inherit;
    color: #f97873;
}

li
{
    margin-bottom: 16px;
}

main
{
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

section
{
    margin-bottom: 50px;
}

article
{
    display: flex;
}

article>*:first-child
{
    color: lightsteelblue;
    flex: 0 0 220px;
    border-right: 1px solid slategrey;
    margin-right: 30px;
}

article h3 .mdi
{
    margin-right: 10px;
}

article .offer h3
{
    margin: 0;
}

footer
{
    text-align: center;
    margin-bottom: 80px;
}

footer a
{
    color: white;
    background-color: indianred;
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 20px;
}

footer a .mdi
{
    margin-right: 10px;
}

footer a:hover
{
    background-color: #b64442;
}

@media (max-width: 768px)
{
    header
    {
        flex-direction: column;
        padding: 15px;
    }

    article
    {
        flex-direction: column;
    }

    article>*:first-child
    {
        flex: initial;
        border-right: none;
        border-bottom: 1px solid slategrey;
        margin-right: 0;
        margin-bottom: 0;
    }
}
