.container-municipios {
  display: flex;
  justify-content: space-between;
}

.column-municipios {
  width: 50%;
}

ul {
  list-style-type: none;
  padding: 0;
}

li.nombremunicipio {
  font-family: system-ui;
  font-weight: 400;
  text-transform: uppercase;
}

.municipio {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 20px;
  color: #3b3b3b;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s, filter 0.3s;
}

.municipio:hover {
  background-color: #dbf1ff;
}

.municipio:hover img {
  transform: scale(1.1);
  filter: contrast(1.5);
}

img.img-municipio {
  width: 60px;
  margin-right: 10px;
  object-fit: cover;
  padding-right: 15px;
}

@media only screen and (max-width: 768px) {
  .container-municipios {
    flex-direction: column;
  }
  .column-municipios {
    width: 100%;
  }
}
