@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz@10..48&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(0, 69, 134);
    color: aliceblue;
   
    
}


.botonera{
  width: 100%;
  height: 20vh;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  
  background-color: rgb(114, 181, 236);
  
}

/* Estilos para los botones */
/* Tomado de: https://uiverse.io/Allyhere/strong-pug-22 */

.btn-donate {
    --clr-font-main: hsla(0 0% 20% / 100);
    --btn-bg-1: rgb(99, 134, 230);
    --btn-bg-2: rgb(112, 152, 233);
    --btn-bg-color: rgb(9, 17, 131);
    text-decoration: none;
    --radii: 0.5em;
    cursor: pointer;
    padding: 0.9em 1.4em;
    min-width: 120px;
    min-height: 44px;
    font-size: var(--size, 1rem);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
    border: none;
    border-radius: var(--radii);
    color: var(--btn-bg-color);
    box-shadow: 0px 0px 20px rgba(71, 114, 255, 0.5), 0px 5px 5px -1px rgba(58, 125, 233, 0.25), inset 4px 4px 8px rgba(175, 230, 255, 0.5), inset -4px -4px 8px rgba(19, 95, 216, 0.35);
  }
  
  .btn-donate:hover {
    background-position: right top;
  }
  
  .btn-donate:is(:focus, :focus-within,:active) {
    outline: none;
    box-shadow: 0 0 0 3px var(--btn-bg-color), 0 0 0 6px var(--btn-bg-2);
  }
  
  @media (prefers-reduced-motion: reduce) {
    .btn-donate {
      transition: linear;
    }
  }
/* Fin de estilo del botón */  

.titulo{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3vmax;
  text-align: center;
  margin-top: 10px;
 
  
}
.subtitulo{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2vmax;
  text-align: left;
  margin-top: 30px;
  margin-left: 20px;
 
  
}

.contenido{
  display: flex;
 align-items: center;
 background-color: rgb(0, 69, 134);
}

.texto{
  font: 19px;
  text-align: left;
  margin-left: 40px;
  margin-right: 40px;
  background-color: rgb(0, 69, 134);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  
}

.foto{
  margin-right: 40px;
}



