body {
  background-color: black;
}
body .burger-menu {
  margin: 0 auto;
  width: 40px;
  display: block;
  transition: all 0.3s;
  cursor: pointer;
  height: 40px;
}
body .burger-menu .bar {
  transition: all 0.3s;
  height: 2px;
  width: 100%;
  display: block;
  background-color: white;
}
body .burger-menu .bar:nth-of-type(2) {
  margin: 8px 0;
}
body .burger-menu--closed {
  transition-delay: 0.3s;
}
body .burger-menu--closed .bar {
  float: right;
}
body .burger-menu--closed .bar:nth-of-type(2) {
  width: 75%;
  transition-property: margin, height, width;
  transition-delay: 0.3s, 0.3s, 0s;
}
body .burger-menu--closed .bar:nth-of-type(3) {
  width: 50%;
}
body .burger-menu--closed:hover .bar:nth-of-type(2) {
  width: 100%;
}
body .burger-menu--closed:hover .bar:nth-of-type(3) {
  width: 100%;
}
body .burger-menu--opened {
  padding-top: 12px;
}
body .burger-menu--opened .bar:nth-of-type(1) {
  transform: rotate(45deg);
  transition-delay: 0.3s;
  height: 2px;
}
body .burger-menu--opened .bar:nth-of-type(2) {
  opacity: 0;
  height: 0;
  margin: -3px;
}
body .burger-menu--opened .bar:nth-of-type(3) {
  transform: rotate(-45deg);
  transition-delay: 0.3s;
  height: 2px;
}
.h2{
  color: lightgrey;
  letter-spacing: 2rem;
}
 /* Estilos para el menú hamburguesa */
      /* Estilos para el menú hamburguesa */

