:root {
  --body-bg-color: #3f3f3f;
  --line-box-color: #e0bf89;
  --text-field-color: #575757;
  --text-second-color: #b3b3b3;
  --font-family: "Inter", sans-serif;
  --font-family-second: "Great Vibes", cursive;
  /* grosores de letra */
  --font-weight-one: 300;
  --font-weight-two: 400;
  /* tamaños de fuentes */
  --font-size-one:12px;
  --font-size-two:20px;
  --font-size-three:12px;
}

/* Estilos Generales */

body {
  background-color: var(--body-bg-color);
  font-family: "Inter";
  font-weight: var(--font-weight-two);
  color: white;
  margin: 0;
  & li {
    list-style: none;
  }
}

/* Barra de navegación estilos */
ul {
  margin: 0px;
  padding: 0px;
}
nav {
  border-bottom: var(--line-box-color) 1px solid;
}
#bar-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;

  & #logo {
    height: 40px;
  }
}

.item-nav{
  font-size: 12px;
  font-weight: var(--font-weight-one);

}

/* footer estilos */

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: var(--line-box-color) 1px solid;
  padding: 20px 0px;

  position: fixed;
  bottom: 0px;
  width: 100%;

  & .link {
    text-decoration: none;
  }
}

.icon {
  height: 28px;
}

#desarrollado-por {
  font-size: 12px;
  font-weight: var(--font-weight-one);
  margin: 0;
}


@media (max-width: 560px){
  footer{
    position: static;
  } 
  .icon {
    height: 24px;
  }

  #desarrollado-por{
    font-size: 12px;
  }

  .item-nav{
    font-size: 16px;
  }
}
