
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Uchen&display=swap');

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

  .open-sans-<uniquifier> {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }
  
  body {
    position: relative;
    margin:  0;
    font-family: 'Open Sans', sans-serif;
    cursor:  url(/images/my-cursor01.png) 20 20, auto;


  }
  body::before {
    content: "";
    background: url("/images/textura.jpg"); /* 🔹 Cambia "textura.jpg" por tu textura */
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    opacity: 0.2; /* Ajusta la opacidad de la imagen */
    position: fixed; /* Cubre toda la ventana */
    top: 0;
    left: 0;
    width: 100%;
    height:100vh;
    z-index: -1; /* Envía el fondo detrás del contenido */
  }
    
  a:hover {
    cursor:url(/images/my-cursor02.png) 20 20, auto;
  }


  header, footer {
    text-align: center;
    padding: 20px;
  }
  header {
margin-top: 2.5em;
  }


  header img {
    max-width: 300px; /* Ajusta tamaño del logo */
    height: auto;
  }

  main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;

  }

  .columna {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
  }

  .columna a {
    text-decoration: none;
  }
  .columna p {
    font-weight: 400;
    margin: 1em 1em;
    font-size: 1.2em;

  }

  .boton {
    display: inline-block;
    padding: 12px 20px;
    background-color: #7c65e1;
    color: #fff;
    border-radius: 25px;
    text-align: center;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
  }

  .boton:hover {
    background-color: #0056b3;
  }

  footer {
    font-weight: 300;
    margin: 2em 1em;
    font-size: 1.2em;
    line-height: 1.6;
  }

  /* --- Responsividad: móviles --- */
  @media (max-width: 768px) {
    main {
      grid-template-columns: 1fr; /* una sola columna en smartphones */
      margin:0;
    }
  }


