@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
:root {
    --primary-color: #00369a;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    background-color: #fff;
}
a {
    color: var(--primary-color);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    margin: 0 auto;
    max-width: 768px;
}
main {
    margin: 0 auto;
    max-width: 768px;
}
h1 {
    padding: 5px 0;
    font-size: 1.7rem;
    color: #111;
    text-align: center;
}
input[type="text"] {
    padding: 10px 20px;
    font-size: 16px;
    border: solid 2px #f0f0f0;
    border-radius: 50px;
    outline: none;
    width: 100%;
}
#searchResult {
    margin-top: 1rem;
}
#searchResult article {
    padding: 0;
    margin: 20px 0;
}
#searchResult article h2 {
    font-size: 1.1rem;
}
.highlight {
    background-color: #fff6ea;
    font-weight: bold;
    padding: 5px;
}