html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji"
}

h1{
    font-family: 'Unbounded', sans-serif;
}

.font-unbounded{
    font-family: 'Unbounded', sans-serif;
}
/* Smooth show/hide for mobile menu */
.menu-enter {
    transform: scale(.98);
    opacity: 0
}

.menu-enter-active {
    transition: .15s;
    transform: scale(1);
    opacity: 1
}

.menu-leave {
    transform: scale(1);
    opacity: 1
}

.menu-leave-active {
    transition: .12s;
    transform: scale(.98);
    opacity: 0
}

a{
    font-family: 'Unbounded', sans-serif;
}