
/* General */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    margin: auto;
    overflow: hidden;
  }
  
  main {
    padding: 20px;
  }
  
  h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Sección "Quiénes Somos" */
  .main-background {
    background-color: #f4f4f4;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  #Titulo {
    text-align: center;
  }
  
  .contenido {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .contenido h1 {
    position: relative;
    text-align: center;
    margin-top: 10px; /* Ajusta el margen superior según sea necesario */
    margin-bottom: 20px; /* Ajusta el margen inferior según sea necesario */
    color: rgb(136, 135, 113); /* Color del texto */
    font-family: "Dancing Script", sans-serif; /* Familia de fuente */
    font-size: 3rem; /* Tamaño de la fuente */
    text-shadow: 2px 2px 3px rgba(7, 7, 7, 0.4); /* Sombra de texto */
    z-index: 2
  }
  
  .contenido p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
  }
  
  footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  