*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;

}



body{

min-height:100vh;

background:url("fondo.png") center/cover fixed no-repeat;

color:white;

}



.pagina{

min-height:100vh;

display:flex;

flex-direction:column;

align-items:center;

padding:40px;

gap:40px;

}



.logo{

width:347px;

max-width:80vw;

}



.contenido{

display:flex;

justify-content:center;

align-items:flex-start;

gap:80px;

width:100%;

}



.informacion{

display:flex;

justify-content:center;

}



.tarjeta{

background:rgba(40,120,40,.85);

width:450px;

max-width:90vw;

padding:25px;

border-radius:14px;

text-shadow:2px 2px 5px black;

}



.tarjeta h1{

text-align:center;

font-size:35px;

margin-bottom:20px;

}



.tarjeta p{

font-size:18px;

line-height:1.5;

margin-top:15px;

}



.tarjeta ul{

padding-left:25px;

font-size:18px;

line-height:1.5;

}



.redes{

display:flex;

flex-direction:column;

align-items:center;

}



.redes h2{

font-size:35px;

margin-bottom:20px;

text-shadow:2px 2px 5px black;

}



.botones{

display:grid;

grid-template-columns:repeat(2,230px);

gap:18px;

}



.botones a{

text-align:center;

text-decoration:none;

color:white;

background:rgba(40,120,40,.85);

padding:15px;

border-radius:14px;

font-size:22px;

transition:.2s;

}



.botones a:hover{

background:rgba(60,170,60,.95);

transform:scale(1.05);

box-shadow:0 0 18px rgba(0,255,100,.4);

}



footer{

position:fixed;

bottom:10px;

left:15px;

font-size:14px;

text-shadow:2px 2px 5px black;

}





@media(max-width:900px){


.pagina{

padding:20px;

}



.contenido{

flex-direction:column;

align-items:center;

gap:30px;

}



.tarjeta{

width:90vw;

}



.botones{

grid-template-columns:1fr;

}



.botones a{

width:85vw;

}



}