/* Make the footer stick to the bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
}

.software-card {
    transition: transform .2s ease-in-out;
}

.software-card:hover {
    transform: scale(1.03);
}