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

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

#answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
}

#answer.show-answer {
    max-height: 1.5em;
    opacity: 1;
}

#home {
    top: 0.5rem;
    left: 1rem;
    display: inline-block;
}
