@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');

.font-headline {
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.hero-image {
    object-fit: cover;
    border-radius: 0.75rem;
}

.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    display: inline-block;
    background-color: #e5e7eb;
    color: #111827;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #d1d5db;
}