
header {
  background-color: #1a1a1a;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav li {
  margin: 0 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}


.zoom{

    transition: transform 0.3s;

}

.zoom:hover{

    transform: scale(1.2);

}


.brightnes{
    transition: filter 0.4s;
}

.brightnes:hover{
    filter: brightness(0.5);
}


.bgImage{

  background-color: #f0f0f0;

/* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.texturaRed{
  background-image: url("../img/textura2.png");
}


.redLink{
  color: white;
  transition: color .7s;
}

.redLink:hover {
  color: #e91e63;
  transition: color .7s;
}

.redButton {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.redButton:hover{
  background-color: #c71b54;
  color: #fff;
}

.footer{
  background-color: #1a1a1a;
}


#pantalla-carga {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Cambio de padding en pantallas de hasta 768px de ancho */

@media (max-width: 590px) {
  .changeSize {
    padding-left: 150px !important;
    padding-right: 150px !important;
  }
}

@media (max-width: 400px) {
  .changeSize {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}