* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --colorTitulos: #ffa500;
  --colortextos: #ffffff;
  --colorbotones: #ffa500;
  --colorfondo: #000;
  --paddingsecciones: 60px 0;
  --marginelementos: 40px;
}

body {
  font-family: "Lato", sans-serif;
}

.contenedor {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: var(--paddingsecciones);
}

/* Menu */
.menu-navegacion {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  width: 100%;
  background-color: #000;
}

.logo {
  height: 100px;
}

.logo img {
  display: block;
  height: 100%;
  width: auto;
  margin-left: 50px;
}

.enlaces li {
  list-style: none;
  display: inline-block;
}

.enlaces a {
  text-decoration: none;
  color: white;
  padding-left: 15px;
}

main {
  width: 100%;
  height: 100%;
  background-image: url(../img/WhatsApp\ Image\ 2023-06-09\ at\ 14.55.10.jpeg);
  display: flex;
  justify-content: center;
}

h1 {
  display: flex;
  font-size: 40px;
  justify-content: center;
  margin: 30px;
}

.contenedor-imagenes {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.contenedor-imagenes img {
  display: block;
  width: 80%;
  box-shadow: 0 0 30px rgb(0, 0, 0);
  margin-bottom: var(--marginelementos);
  margin-top: 60px;
}

@media screen and (max-width: 800px) {
  .menu-navegacion {
    flex-direction: column;
    height: 120px;
    justify-content: space-evenly;
    margin-top: 1px;
  }
}
footer {
  background-color: #000;
  color: #ffffff;
  text-align: center;
}

/*# sourceMappingURL=style4.css.map */
