* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  height: 100vh;
  background-image: url("../img/fondo-espacio.jpg");
  background-color: #cccccc;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placas {
  margin-bottom: 40px;
}
.placas .logo {
  text-align: center;
}
.placas .logo img {
  max-width: 80%;
}
.placas :nth-child(4) {
  margin-left: -8px;
}

.redes {
  margin-top: 20px;
  height: 38px;
  display: flex;
  justify-content: center;
  gap: 6%;
}
.redes img:hover {
  opacity: 0.7;
}

.placas {
  opacity: 0; /* Initially hidden */
  transition: opacity 1s ease-in-out; /* Smooth transition effect */
}

.placas.fade-in {
  opacity: 1; /* Fade in when the fade-in class is added */
}/*# sourceMappingURL=styles.css.map */