/* Estilos generales */
body {
  background-color: black;
  margin: 0;
  padding: 0;
  font-family: 'Nova Mono', monospace;
  color: rgb(212, 212, 212);
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(65, 65, 65, 0.8);
  left: 0;
  width: 100%;
}

.logo,
.tituloWeb,
.botones {
  padding: 1rem;
}

.logo img {
  width: 70px;
  border-radius: 16px;
}

.tituloWeb {
  justify-self: center;
}

.navbar-menu-lista {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  padding: 0;
}

.navbar-menu-lista li {
  text-decoration: none;
  margin-right: 1rem;
}

.navbar-menu-lista a {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgba(45, 45, 45, 0.9);
  color: rgb(93, 169, 182);
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.navbar-menu-lista a:hover {
  background-color: rgba(65, 65, 65, 0.8);
  color: rgb(93, 169, 182);
}



/* Estilos para el footer */
footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px;
  text-align: center;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.social-icons i {
  display: inline-block;
  margin: 1rem;
  color: white;
  font-size: 20px;
}


.social-icon:hover {
  color: rgb(93, 169, 182);
}


/* Media Queries */
@media (max-width: 768px) {
  .navbar {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
  }

  .botones {
    justify-content: center;
  }

}