:root {
  font-size: 10px;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  min-height: 100vh;
  color: #ffffff;
  font-size: 1.6rem;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans','Helvetica Neue',sans-serif;
  background-color: #282c34;
}

.container {
  width: 100%;
  max-width: 114rem;
  margin: 0 auto;
  padding: 15px;
}

.header__title {
  color: #61dafb;
  font-size: 5rem;
  margin-bottom: 3rem;
}

.navbar__item {
  list-style-image: url(../images/list.png);
  list-style-position: inside;
}

.navbar__link {
  color: #ffffff;
  font-size: 3rem;
  text-decoration: none;
  -webkit-transition: all linear .3s;
  -o-transition: all linear .3s;
  -moz-transition: all linear .3s;
  transition: all linear .3s;
  text-underline-offset: 0.5rem;
}

.navbar__link:hover {
  color: #61dafb;
  -webkit-text-decoration: underline #ffffff;
     -moz-text-decoration: underline #ffffff;
          text-decoration: underline #ffffff;
  text-underline-offset: 1rem;
}
/*# sourceMappingURL=style.css.map */