@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');

/* Prevent iOS WKWebView from zooming in when focusing an input (triggered when font-size < 16px). */

@media (pointer: coarse) {
    input,
    select,
    textarea {
        font-size: max(16px, 1em);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
