/* PALETA */
:root{
--azulOscuro:#1e3a5f;
--azul:#2f80ed;
--gris:#f4f6f9;
--texto:#333;
}

/* GENERAL */

body{
background: var(--gris);
font-family: 'Segoe UI', sans-serif;
color: var(--texto);
}


/* TITULOS */

h2{
color: var(--azulOscuro);
font-weight: bold;
margin-bottom: 15px;
}


/* TARJETAS */

.card{
border: none;
border-radius: 12px;
transition: transform .2s;
}

.card:hover{
transform: scale(1.02);
}


/* LISTAS */

.list-group-item{
display:flex;
flex-direction:column;
border:none;
border-bottom:1px solid #ddd;
}


/* LINKS */

a{
text-decoration:none;
color:var(--azul);
font-weight:500;
}

a:hover{
color:var(--azulOscuro);
}


/* DESCRIPCION */

.descripcion{
font-size:13px;
color:#777;
}


/* FOOTER */

footer{
margin-top:40px;
}

footer h4{
margin-top:10px;
font-size:18px;
}