@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;700&display=swap');

html {
    height: 100%;
  }
  
  body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

footer {
    margin-top: auto;
  }

a {
    cursor: pointer;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
}

li {
    list-style: none;
}

.card-hover {
    transition: transform 0.3s, box-shadow 0.3s;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.card-hover i {
    color: #007bff; /* Color del icono */
    transition: color 0.3s;
}
.card-hover:hover i {
    color: #0056b3; /* Color al pasar el mouse */
}

