@import url('https://fonts.cdnfonts.com/css/satoshi');

* {
    font-family: 'Satoshi', sans-serif;
    box-sizing: border-box;
}

body {
    padding: 20px;
}

h1 {
    font-weight: 700;
}

p {
    color: grey;
    font-size: 18px;
    line-height: 35px;
}

li {
    color: grey;
    line-height: 35px;
    font-size: 18px
}

@media screen and (min-width: 768px) {
    body {
        padding: 70px;
    }
}