@import url("https://fonts.googleapis.com/css?family=Caveat&display=swap");
.iconbitart {
  background: black;
  padding-top: 15px;
}

.iconbitart .img_logo {
  width: 150px;
  height: 200px;
  /* Centrar la imagen */
  margin: 0 auto;
  display: block;
}

.main_header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  text-align: center;
  width: 100%;
  height: 80px;
  background: black;
  font-size: 23px;
  font-family: 'Caveat', cursive;
  font-style: oblique;
  margin-top: -8px;
}

.main_header .icono_menu {
  padding-top: 30px;
}

.main_header #boton_menu {
  display: none;
  height: 50px;
}

header label {
  display: none;
  width: 100px;
  padding: 10px;
  border-right: 1px ridge whitesmoke;
}

header label:hover {
  cursor: pointer;
  background: green;
}

.menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.menu li {
  padding: 20px 25px 0px 25px;
}

.menu li a {
  text-decoration: none;
  color: white;
}

.menu li a:hover {
  color: green;
  text-decoration: overline;
}

.menu .dropdown {
  position: relative;
  display: inline-block;
}

.menu .dropbtn {
  background: black;
  font-size: 23px;
  font-family: 'Caveat', cursive;
  color: whitesmoke;
  padding: 16px;
  border: hidden;
  cursor: pointer;
}

.menu .dropdown_content {
  display: none;
  position: absolute;
  background: black;
  min-width: 160px;
  z-index: 1;
}

.menu .dropdown_content a {
  color: whitesmoke;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown_content {
  display: block;
}

.dropdown_content a:hover {
  background: green;
}

.dropdown:hover .dropbtn {
  color: green;
  text-decoration: overline;
}

/* Incluir responsive */
/* mostrar el menu escondido */
@media (max-width: 900px) {
  header label {
    display: block;
    height: 27px;
  }
  .menu .dropbtn {
    background: green;
  }
  .menu {
    position: absolute;
    background: green;
    width: 100%;
    margin-left: -100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 100;
  }
  #boton_menu:checked ~ .menu {
    margin: 0;
  }
  .menu ul {
    display: block;
  }
  .menu li:hover {
    background: black;
  }
  .dropbtn {
    background: green;
    color: whitesmoke;
  }
  .dropdown_content a {
    color: whitesmoke;
  }
  .dropdown_content a:hover {
    color: green;
    background: black;
  }
  .dropdown:hover .dropbtn {
    color: green;
    background: black;
  }
}
/*# sourceMappingURL=menu.css.map */