@import url("https://fonts.googleapis.com/css?family=Montserrat");
@import url("https://fonts.googleapis.com/css?family=Open+Sans");
@import url("https://use.fontawesome.com/releases/v5.1.0/css/all.css");

body
{
    font-family: "Open Sans", sans-serif;
    margin: 0;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3
{
    font-family: Montserrat, sans-serif;
}

main
{
    flex: 1;
}

p
{
    color: dimgray;
}

img
{
    zoom: 50%;
}

a
{
    text-decoration: none;
    color: steelblue;
    transition: color 0.1s linear;
}

a:hover
{
    color: darkorange;
}

time
{
    font-size: 0.8em;
    color: lightslategray;
}

time:before
{
    font-family: "Font Awesome 5 Free";
    content: "\f017";
    font-weight: 400;
    margin-right: 10px;
}
