@import url(./global.css);
@import url(./animaciones.css);

html {
  font-size: 62.5%;
}

header {
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 150px;
  justify-content: space-between;
  background-color: transparent;
  color: transparent;
  z-index: 100;
}
  
header img {
  max-height: 100%;
}

header .paginas {
  margin-right: 20px;
  height: 100%;
  display: flex;
  flex-direction: row;
}

header .paginas ul {
  display: flex;
  flex-direction: row;
  font-size: 18px;
}

header .paginas ul li {
  margin: 0 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 70%;
}

header .paginas ul li a {
  text-decoration: none;
  color: var(--global-fuente-oscura);
  cursor: pointer;
}

@media screen and (max-width: 720px) {
  header {
    flex-direction: column;
    justify-content: center;
    height: fit-content;
  }

  header img {
    width: 100%;
    height: auto;
  }

  header .paginas ul {
    width: 100%;
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }
}
