/* Fonts */
@font-face {
    font-family: 'VTI Space Grotesk';
    src: url('../fonts/VTI-SpaceGrotesk-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'VTI Space Grotesk';
    src: url('../fonts/VTI-SpaceGrotesk-Medium.woff2') format('woff2');
    font-weight: 500;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans-Regular.woff2') format('woff2');
}

/* Base */
body {
    font-family: 'Work Sans', Arial, sans-serif;
    color: #3b3b3b;
}

h1, h2, h3 {
    font-family: 'VTI Space Grotesk', sans-serif;
}

/* Cards */
.card-tile {
    background: #f2f2f2;
    padding: 20px;
    transition: 0.2s;
}

.card-tile:hover {
    transform: translateY(-4px);
}

.card-tile img {
    max-height: 120px;
    object-fit: contain;
}

/* Footer */
footer {
    background: #2c2f36;
    color: white;
}

footer a {
    color: white;
    text-decoration: underline;
}