



* {

    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: white;
  
    text-shadow: 2px 1px black;
    animation: intro 1s steps(30) 1;
}


body {

    background-image: url("./images/golden inicio big.jpg");
    background-size: cover;
    background-position: 10% 40%;
background-repeat: no-repeat;

box-sizing: border-box;
position: relative;

width: 100vw;
  height: 100vh;
    margin:0px;
    padding: 0px;


}


p {

    margin:auto;
    text-align: center;
   
}

div {

box-sizing: border-box;
position: relative;

margin: 0px;
    padding: 32px;


    



}



.grid-container {

    justify-content: center;
    display: flex;
    align-items: center;
    width: 100vw;
  height: 100vh;
}

.grid-container > div {
    
  
  text-align: center;


    border: 0px solid white;
    letter-spacing: 2px;
    line-height: 24px;
  
}

._h1 {

font-size: 30px;

}


@media only screen and (max-width: 625px)  {


    ._h1 {

font-size: 25px;

}


* {

font-size: 17px;

}



div {

    padding: 5px;
    
}


.grid-container > div {

    letter-spacing: 1.5px;
}


}


@media only screen and (max-width: 500px)  {


    ._h1 {

font-size: 20px;

}


* {

font-size: 14px;

}


.grid-container > div {

letter-spacing: 1px;
line-height: 24px;
}


}





@keyframes intro {
   

   0%{ opacity: 0; }
   100% { opacity: 1; }
   
   }




