*, *::before, *::after {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0
}
@supports (text-wrap: pretty) {
    *, *::before, *::after {
        text-wrap: pretty
    }
}
html {
    font-size: 16px;
    overflow-x: clip;
    scroll-behavior: smooth
}
@supports (scrollbar-gutter: stable) {
    html {
        scrollbar-gutter: stable
    }
}
body, main {
    max-width: 100%;
    min-height: 100vh
}
@supports (min-height: 100svh) {
    body, main {
        min-height: 100svh
    }
}
body {
    background-color: cornflowerblue
}
img {
    display: block;
    margin-left: .5rem;
    max-width: 5vh
}
main {
    align-items: center;
    display: flex;
    justify-content: center
}
header h1, footer {
    text-align: center
}
header h1 {
    font-size: 40px
}
@supports (text-wrap: balance) {
    h1 {
        text-wrap: balance
    }
}
main #search-bar {
    padding: 1rem;
    width: 50%
}
#engine-options {
    margin-left: 1rem
}