body,html {
   
    font-family: Arial, sans-serif;
    margin: 8px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover; /* O 'contain' si deseas ajustar la imagen para que se adapte al tamaño del área de fondo */
    background-position: center; /* Para centrar la imagen en el fondo */
	padding-bottom: 5px;
    background-image: url('./images/fondo_principal.jpg'); /*Reemplaza 'ruta-de-tu-imagen.jpg' con la ruta de tu imagen de fondo */
    background-size: cover; /* Ajusta la imagen al tamaño de la ventana del navegador */
    background-repeat: no-repeat; /* Evita la repetición de la imagen de fondo */
    background-attachment: fixed; /* Fija la imagen de fondo para que no se desplace con el contenido */	
}



header {
    background-color: #f8f9fa;
    padding: 5px;
    text-align: center;
    
}


.css-button-3d--blue {
  text-decoration: none; /* Quita el subrayado del enlace */
  min-width: 120px;
  height: 30px;
  color: #fff;
  padding: 5px 10px;  
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  border: none;
  background: #3d348b;
  box-shadow: 0 5px #2c0b8e;
}
.css-button-3d--blue:hover {
  box-shadow: 0 6px #2c0b8e;
  top: 2px;
}
.css-button-3d--blue:active {
  box-shadow: 0 0 #2c0b8e;
  top: 5px;
}


.css-button-3d--red {
  text-decoration: none; /* Quita el subrayado del enlace */
  min-width: 120px;
  height: 30px;
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  border: none;
  background: #ef233c;
  box-shadow: 0 5px #d90429;
}
.css-button-3d--red:hover {
  box-shadow: 0 6px #d90429;
  top: 2px;
}
.css-button-3d--red:active {
  box-shadow: 0 0 #d90429;
  top: 5px;
}

.language-selector button {
    margin: 0 5px;
    cursor: pointer; 
    display: flex;    
    justify-content : center;
    flex-wrap : wrap;
}


.head-slogan {

  margin : auto;
  width : 280PX;
  padding : 10px;
  
  margin-bottom : 20px;
  background: #343a40;
  color: white;  
  text-align: center;
  

  }

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding : 1%;
}

.content-section:hover {
    transform: scale(1.05);
}

footer, .general-footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .content-section {
        width: 100%;
    }
}

.content-section {
    
    padding: 10px;
    border: 1px solid #ccc;
    margin: 10px;
    transition: transform 0.3s ease;
}


