/*Ajustes Generales*/
html{ 
	font-size: 62.5%;
	box-sizing: border-box;
}

body{
	font-size: 16px;
    background-image: url(../Images/fondoss.gif);
    background-repeat: no-repeat; 
    background-size: cover;    
    min-height: 100vh;  
    display: flex;
    flex-direction: column; 
    margin: 0;
    padding-bottom: -3rem;
}

/*Nav*/
.navegacion{

    width: 100%;
    text-align: center;
    background-color: rgba(133, 129, 165, 0.808);
    padding-bottom: 4rem;
    
}

.logotipo{
    padding: 1.5rem;
   width: 10rem;
   height: 10rem;
   margin-bottom: 2rem;
}

.boton1{
    padding: 0rem 0rem 0rem 1.4rem;
    text-align: center;
}

.eapboton{
    background-color: rgb(217, 183, 155);
    font-size: 2rem;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-decoration: none;
    border-radius: 1rem;
    padding: 2rem;
    color: rgb(0, 0, 0);
    
}

.eapboton:hover{
    background-color: rgb(241, 219, 199);
    color: #8581a5;
    -webkit-text-stroke: 1px rgb(0, 0, 0);
}

.logotipo{
     padding: 1.5rem;
     border: .5rem solid #000;
    max-width: 10rem;
    max-height: 10rem;
    margin-bottom: 2rem;
}

/*--------Presentacion---------*/

.texto-pri{
    text-align: center;
}

.Titulo1{
    margin: 0;
    margin-bottom: 1rem;
    font-size: 3.8rem;
    -webkit-text-stroke: 3px black;
    color: rgb(255, 255, 255);
    font-family: 'Bungee', cursive, sans-serif;
}

.introduccion{
    margin: 0;
    margin-bottom: 1.8rem;
    -webkit-text-stroke: 1.4px black;
    color: rgb(255, 255, 255);
    font-size: 2.8rem;
    font-family: 'Courier New', Courier, monospace;
  
}

/*Modal*/
.btn2{
    text-align: center;
}

.btn__modal{
    max-width: 8rem;
    padding: 1.5rem;
    border-radius: 50%;
    background-image: linear-gradient(to top, #d56f5f  0%, #9d99ba 100%);
    margin-bottom:2rem ;

}


.modal-container{
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;

}
.modal{
    background-image: linear-gradient(to top, #db7768  0%, #8581a5 100%);
    max-width: 60%;
    height: 60%;
    overflow: hidden;
    text-align: center;
    margin: 1rem solid black;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
    transition: transform 1s;
    transform: translateY(0%);
    border: #000 .4rem solid;
    padding: 1.5rem;
    -webkit-box-shadow: 5px 9px 5px 0px rgba(0,0,0,1);
    -moz-box-shadow: 5px 9px 5px 0px rgba(0,0,0,1);
    box-shadow: 5px 9px 5px 0px rgba(0,0,0,1);
    font-size: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
}

.btnc{
    text-align: center;
}

.Close{
    max-width: 8rem;
    padding: 1.5rem;
    border-radius: 50%;
    background-image: linear-gradient(to top, #d56f5f  0%, #9d99ba 100%);

}

.modal-textos{ 
    font-family: 'Bungee', cursive, sans-serif;
    font-size: 1rem;
}

@media (min-width:620px){

    .modal{
     height: 60%;   
     max-width: 50%;
        font-size: 2rem;
    } 

    .modal-textos{ 
        font-size: 1.5rem;
    }
}


/*Footer*/
.footer{

    display: block;
}

.piede{
    width: 99%;
    bottom: 0;
    border: 1rem rgba(112, 104, 219, 0.501) solid;
    margin-left: 0%;
    border-top: .8rem rgba(49, 114, 132, 0.819)  solid;
    background-image: linear-gradient(to top, #d56f5f  0%, rgba(49, 114, 132, 0.819) 100%);
    border-bottom: 1rem #d56f5f solid;
    color: aliceblue;
     font-family: 'Red Hat Mono', monospace;
    display: grid;
    grid-template-columns: 1fr 1fr;

}

.creditos-div{
    text-align: end;

}


@media (min-width:700px){

    .footer{
        margin-top: auto;

    }



}




@media (min-width:480px){

   .Titulo1{
    font-size: 5rem;
   }

   .introduccion{
    font-size: 2.9rem;

   }

   



}

