/*style.css*/

body {
    font-family: 'Helvetica', sans-serif;
}

.uk-section-primary {
    background-color: #004b87;
    color: white;
}

.uk-section-muted {
    background-color: #f8f8f8;
}

.uk-button-default {
    background-color: white;
    color: #004b87;
}

.uk-button-primary {
    background-color: #004b87;
    color: white;
}

.uk-card {
    transition: transform 0.3s ease-in-out;
}

.uk-card:hover {
    transform: translateY(-10px);
}
