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

:root {
    --color-primary: #374151;
    --color-accent: #1D4ED8;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-primary);
    background-color: #f9fafb;
    min-height: 100vh;
}

h1, h2 {
    font-family: 'Merriweather', serif;
}

.cta-button {
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    background-color: #1E40AF;
}

/* smooth scrolling (anchor links) :P */
html {
    scroll-behavior: smooth;
}

.alink {
    color: #1E40AF;
    text-decoration: underline;
}
.alink:hover {
    color: #471eaf;
    text-decoration: underline;
}
code {
    padding: 3px;
    border-radius: 5px;
    background-color: #d3d3d3;
}
