@import url("https://fonts.googleapis.com/css2?family=Noto+Sans");

body {
    font-family: "Noto Sans", sans-serif;
    font-size: 1.2em;
}

#title {
    display: inline-block;
}

.hidden {
    display: none;
}

.output-box {
    min-height: 2.5em;
    max-height: 10em;
    overflow-y: auto;
}

button.flash {
    animation: flash 1s linear forwards;
}

@keyframes flash {
    0% { color: var(--bs-warning); }
    100% { color: var(--bs-btn-color); }
}
