.footer {
    padding: 15px 20px 10px 20px;
	background-color: #b55456;}
.footer p {
	padding-bottom: 6px;
	color: #fff;
	
}

.line {
  height: 1px;
  background-color: #000;
  margin: 10px auto;
  width: 100%;
}

.historia {
	margin-left: 30px;
	margin-right: 30px;
	text-align: justify;
	background-color: #fff;
	width: 100%;
	margin: auto;
}

.subtitulos {
	font-family: 'Robot';
	font-size: 19px;
	text-align: left;
	color: #d2888a;
	margin-bottom: 30px;
	font-weight: 600;
}

.content-historia {
	font-size: 18px;
	text-align: justify;
	width: 90%;
	margin: auto;
}

.historia h2 {
	padding-top: 20px;
}

.sobre-mi {
  overflow: hidden;
}
.img-sobre-mi {
  float: right;
  width: 150px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin: 0px 30px auto 40px;
}


.frase {
	margin:auto;
	font-size: 18px;
	text-align: center;
	line-height: -70px;
	color: #9a2225;
	padding: 50px 0 20px 0;
	width: 70%;
}


@media (max-width: 800px){
	.frase {
		width: 80%;
	}
}
@media (max-width: 500px){
	.frase {
		width: 90%;
	}
}


.btn {
	text-decoration: none;
}

.btn-donate {
	display: none;
  --btn-bg-1: #F2C6C7;
  --btn-bg-2: #B55456;
  --btn-bg-color: white;
  --radii: 0.5em;

  cursor: pointer;
  padding: 0.9em 1.4em;
  min-width: 120px;
  min-height: 44px;
  width: 80%;
  margin: 20px auto;

  font-size: 18px;
  font-weight: 400;

  background-image: linear-gradient(
    325deg,
    var(--btn-bg-2) 0%,
    var(--btn-bg-1) 50%,
    var(--btn-bg-2) 100%
  );
  background-size: 200% 200%;
  animation: brillo-automatico 8s ease-in-out infinite alternate;

  border: none;
  border-radius: var(--radii);
  color: var(--btn-bg-color);

  box-shadow: none;
  transition: transform 0.3s ease;
}

@keyframes brillo-automatico {
  0% {
    background-position: 0% 0%; /* inicio */
  }
  12.5% {
    background-position: 100% 100%; /* rayito va en 1s */
  }
  50% {
    background-position: 100% 100%; /* espera 3s quieto */
  }
  62.5% {
    background-position: 0% 0%; /* rayito regresa en 1s */
  }
  100% {
    background-position: 0% 0%; /* espera 3s más */
  }
}


.btn-donate:active {
  transform: scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
  .btn-donate {
    animation: none !important;
  }
}


@media (max-width: 550px) {
	.btn-donate {
		display: block;
	}
}


