/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Estilos generales */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;    line-height: 1.6;
    color:#3B3B6D;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #3B3B6D;
  }
  
  h1 {
    text-align: center;
    padding: 20px 0;
    color: white; /* Para que el texto sea visible sobre la imagen */
    border-color: #3B3B6D;
  }
  
  .section {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #F5F5F5; /* Fondo semitransparente para que el texto sea legible */
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 16px;
  }
  button {
    padding: 1rem 3rem;
    font-size: 1rem;
    border: none;
    color:white ;
    background-color: #3B3B6D;
    cursor: pointer;
    border-radius: 35px;
    display: flex;
    margin: auto;
  }
  button:hover{
    background: white;
    color: black;
}
a:hover {
    color: rgb(0, 162, 255);
}
footer {
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
  }