body {
    margin: 10px auto;
    padding: 10px;
    font-size: 1.5em;
    border: 2px solid black;
    border-radius: 15px;
    max-width: 900px;
    background: lightcyan;
}

#search {
    font-size: 1.2em;
    width: 15em;
}

#bar {
    text-align: center;
    margin-bottom: 10px;
    border: solid transparent;
}

#matches {
    max-width: 95%;
    margin: 0 auto;
}

#noscript {
    font-weight: 900;
    border: 3px solid black;
    background: lightcoral;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    color: black;
    font-size: 1.2em;
    text-align: center;
}

.match {
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    margin: 5px;
}

.title {
    font-weight: 900;
}

@media only screen and (max-width: 900px) {
    #search {
        max-width: 85%;
    }
}