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

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}
/* Animation for menu items */
li {
    transition: transform 0.2s ease;
}
li:hover {
    transform: translateX(5px);
    color: #EEA316;
}
/* Custom scrollbar for iframe */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #EEA316;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #000000;
}