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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.resume-section {
    transition: all 0.3s ease;
}

.resume-section:hover {
    transform: translateY(-2px);
}

.print-button {
    transition: all 0.2s ease;
}

.print-button:hover {
    transform: scale(1.05);
}

@media print {
    body {
        background-color: white;
        color: black;
    }
    
    .no-print {
        display: none !important;
    }
    
    .resume-section {
        break-inside: avoid;
    }
}