/* Formatos para página principal */
@import url( "https://fonts.googleapis.com/css2?family=Poltawski+Nowy&family=Rubik+Bubbles&family=Rufina&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Farsan&family=Poltawski+Nowy&family=Rubik+Bubbles&family=Rufina&display=swap");
*{
    margin: 0;
    padding: 0;
}

.cuerpo{
    background-color:rgb(47, 71, 107) ;
    width: 100%;
    height: 100%;
}


/* css exclusivo botones */
.botonera{
    padding: top 5%;
    width: 50%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}


button {
    text-decoration: none;
    position: relative;
    border: none;
    font-size: 14px;
    font-family: inherit;
    color: #fff;
    width: 9em;
    height: 3em;
    line-height: 2em;
    text-align: center;
    background: linear-gradient(90deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
    background-size: 300%;
    border-radius: 30px;
    z-index: 1;
  }
  
  button:hover {
    animation: ani 8s linear infinite;
    border: none;
  }
  
  @keyframes ani {
    0% {
      background-position: 0%;
    }
  
    100% {
      background-position: 400%;
    }
  }
  
  button:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
    background: linear-gradient(90deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
    background-size: 400%;
    border-radius: 35px;
    transition: 1s;
  }
  
  button:hover::before {
    filter: blur(20px);
  }
  
  button:active {
    background: linear-gradient(32deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
  }

.titulo{
/*alto y ancho*/
    height: 15%;
    width: 100%;

/*formato del texto*/
    background-color: rgba(168, 26, 85, 0.856);
    font-size: 200%;
    color: rgb(0, 0, 0);
    text-align: center;
    font-family:  'Poltawski Nowy', serif;
    letter-spacing: 0.27em;
    word-spacing: 0.15em;

}

.info{
 /*alto y ancho*/
    height: 40%;
    width: 80%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
}

.texto{
/*alto y ancho*/
    height: 100%;
    width: 60%;

/*formato del texto*/
    font-size: 120%;
    font-family:'Rubik Bubbles', cursive; 
    color: rgb(0, 0, 0);
    padding: 1em;
    margin-left: 5em;
}

.foto {
/*alto y ancho*/
    width: 35%;
    height: 90%;
}

.foto img{
/*ancho*/
    width: 100%;

/*bordes de la imagen*/
    border: 6px solid rgb(83, 3, 14);
}   


