@import url('https://fonts.googleapis.com/css?family=Nunito:400,700');

html {
    line-height: 1.6;
    background-color: #212529;
    color: #e6e2de;
    font-family: 'Nunito', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
dd,
p,
dl {
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 8px;
}

main {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 16px 16px 16px;
    min-height: 0;
}

body {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
}

a {
    text-decoration: none;
}

nav {
    background-color: #2b3035;
    margin-bottom: 40px;
}

nav a {
    color: #b5b6b8;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    padding: 0px 46px;
}

.nav-content img {
    display: block;
    width: 30px;
    height: 30px;
}

.nav-content ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0px;
}

.nav-link {
    padding: 8px;
}

.nav-link:hover {
    color: #17db55;
}

@media (max-width: 600px) {
    .nav-content {
        flex-direction: column;
        align-items: center;
        padding: 8px 0px;
    }

    .nav-content ul {
        margin: 0px;
        padding: 0px;
    }
}