    /* Estilos para el pie de página */
footer {
      background-color: #f2f2f2;
      padding: 20px;
      text-align: center;
    }

    /* Estilos para los enlaces */
    footer a {
      color: #333;
      text-decoration: none;
      margin: 0 10px;
    }

    /* Estilos para el logo */
    footer img {
      height: 50px;
      width: 50px;
}

.navbar {
  overflow: hidden;
  background-color: #333;  
  position: fixed;
  top: 0;
  width: 100%;
}

.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.navbar a:hover {
  background-color: #ddd;
  color: black;
}

.navbar a.active {
  background-color: DodgerBlue;
  color: white;
}

.navbar .icon {
  display: none;
}

@media screen and (max-width: 800px) {
  .navbar a:not(:first-child) {display: none;}
  .navbar a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .navbar.responsive .icon {
    position: absolute;
    right: 0;
    bottom:0;
  }
  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

}