@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 300;
    src: url('/css/fonts/montserrat.latin.normal.300.woff2')
}

* {
    box-sizing: border-box;
}

body {
    margin: 32px;
    font-family: Montserrat;
    color: #333333;
}

a {
    color: #222222;
    text-decoration: none;
}
a:visited {
    color: #333333;
}
a:hover {
    color: orangered;
}

h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.5rem;
}
h3 {
    font-size: 0.8rem;
}
p, li {
    line-height: 1.5rem;
}

@media screen and (min-width: 768px) {
    body {
        width: 768px;
        margin: 32px auto;
    }
}