body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
  margin-top: 80px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main h1 {
  text-align: center;
}

nav {
  margin-bottom: 30px;
}

footer {
  background-color: black;
  color: white;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer p {
  margin: 0;
}

#root ol {
  counter-reset: item;
  margin-bottom: 15px;
  /* margin-top: 10px; */
}

li {
  display: block;
}

li:before {
  content: counters(item, '.') ' :: ';
  counter-increment: item;
  padding-right: 5px;
}

.folder {
  margin-top: 15px;
}
/* .files {
  display: none;
}

.files.html {
  display: block;
} */
