.login-logo {
    width: 1rem;
    margin: 0.3rem;
    /* border: solid; */
}

.estrella{
    color: var(--white);
    height: fit-content;
    display: flex;
}
/* Definimos un ancho fluido y una altura fija para nuestro menú */
header {
  background: var(--green);
  height: 3rem;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
}

.estrella{
    margin-top: 0.3rem;
    margin-left: 0.5rem;
}

.navbar-brand{
    height: 3rem;
    float: left;
    padding: 0.5rem;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* border: solid #ffc700; */
}

/* El navbar será flotado a la izquierda */
#navbar {
    margin-right: 3rem;
    display: flex;
    flex-direction: row;
    height: 3rem;
  float: left;

  width: auto;
  align-items: center;
  justify-content: center;
  font-weight: bold;

}

#navbar a {
  text-decoration: none;
  text-align: center;
  color: var(--white);
}

/* Fijamos nuestro nav en 100% ancho */
#menu {
  position: absolute;
  top: 3rem;
  width: 100%;
  z-index: 1000;
}

/* Quitamos estilos por defecto del tag UL */
#menu ul {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

/* Convertimos nuestra lista de enlaces en un menú horizontal */
#menu li {
  display: block;
  background: var(--darkgreen);
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid var(--superdarkgreen);
}

/* Damos estilo a nuestros enlaces */
#menu li a {
  display: block;
  color: var(--white);
  text-decoration: none;
  line-height: 60px;
  padding: 0 26px;
}

#menu li a:active,
#menu li a:focus {
  color: var(--orange);
}

/* Agregamos una animación al despliegue del menú */
#menu .open-menu {
  box-shadow: 0 1px 2px rgba(0,0,0,.5);
  max-height: 50rem;
  transition: max-height .4s ease;
}

/* Botón mostrar menú */
#nav-mobile {
  background: transparent;
  border: 0;
  cursor: pointer;
  float: right;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: -3.4rem;
  opacity: 0.6;
}

/* Agregaremos esta clase a #nav-mobile, cuando el menú mobile haya sido desplegado */
#nav-mobile.nav-open {
  opacity: 1;
}

#nav-mobile span {
  display: block;
  width: 60%;
  margin: 4px auto;
  height: 4px;
  background: #fff;
}
