body {
  font-family: 'Montserrat Alternates', sans-serif;
  background-color: antiquewhite;
}

.container {
  padding: 0px;
}

.navbar {
  background-color:bisque;
}

section {
  padding-top: 55px;
  padding-bottom: 25px;
  border-bottom: solid 1px grey;
}

section > h2 {
  text-align: center;
  color:darkolivegreen;
  padding-bottom: 25px;
  padding-top: 15px;
}

.resumen {
  display: none;
  font-weight: light;
  padding: 10px 10px 10px 0;
  border: solid 1px lightgrey;
  padding: 10px;
  background-color: bisque;
  width: 80%;
  margin: 10px;
}

@media screen and (max-width: 992px) {
  .resumen {
    width: 92%;
    margin-left: 0;
  }
}
.botonMostrarResumen {
  display: inline;
  font-weight: light;
  font-size: 0.8rem;
  padding: 2pt;
  }

.botonOcultarResumen {
  display: none;
  font-weight: light;
  font-size: 0.8rem;
  padding: 2pt;
  }

ol {
  list-style: none;
  counter-reset: item;
}
ol > li:before {
  color: white;
  background: darkolivegreen;
  padding: 2px 22px 2px 8px;
  margin-right: 10px;
  content: counter(item);
  border-radius: 50%;
  width: 1.2em;
  text-align: center;
  display: inline-block;
}
ol > li {
  counter-increment: item;
  margin-bottom: 15px;
}

ul {
  list-style: none;
}
ul > li {
  margin-bottom: 15px;
}
section ul > li:before {
  color: white;
  background-color: darkolivegreen;
  padding: 0px 7px 0px 7px;
  margin-right: 10px;
  content: " ";
  border-radius: 50%;
  width: 1em;
  height: 1em;
  display: inline-block;
}

.nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
  padding-top: 2px;
  margin-left: 10px;
}

.nav-link.active {
  background-color: antiquewhite;
  border-radius: 3px;
}
a > .material-symbols-outlined {
  margin-left: 4=px;
  margin-right: 10px;
}

.btn {
  background-color: bisque;
  color: darkolivegreen;
  border-color: darkolivegreen;
}