/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: local(''),
      url('/fonts/poppins-v20-latin-regular.woff2') format('woff2'),
      url('/fonts/poppins-v20-latin-regular.woff') format('woff');
}
/* poppins-600 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: local(''),
      url('/fonts/poppins-v20-latin-600.woff2') format('woff2'),
      url('/fonts/poppins-v20-latin-600.woff') format('woff');
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', serif;
  background: #263238;
  color: #fff;
}

a {
  color: hsl(240, 100%, 76%);
}

header {
  margin: 8px 64px;
  text-align: center;
}

nav {
  display: inline-block;
  margin: 0 16px; 
}

nav a {
  display: inline-block;
  margin: 0 4px; 
}

nav a img svg {
  width: 32px;
  height: 32px;
}

nav a svg path {
  fill: #bbb;
}

nav a:hover svg path {
  fill: #eee;
}

h1 {
  font-size: 3em;
  color: #fff;
  display: inline-block;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.todo {
  text-align: center;
  padding: 48px;
}

footer {
  text-align: center;
  margin-top: 64px;
}