* {
    box-sizing: border-box;
}

html {
    font-family: "DINWebPro";
}

body {
    background: #002340;
    color: white;
}

header {
    background: white;
    padding: 16px;
}

input {
    font-family: "DINWebPro";
    border: solid 1px #ccc;
    font-size: 18px;
    padding: 8px;
    outline: none;
    color: #333;
}

input[type=submit] {
    border: none;
    background: #ccc;
    color: #333;
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    outline: none;
}

h1 {
    margin: 0;
}

.main {
    max-width: 640px;
    margin: 16px auto;
    padding: 16px;
    text-align: center;
}

.tt-menu {
    text-align: left;
    background: white;
    width: 100%;
    border-left: solid 1px #eee;
    border-right: solid 1px #eee;
    color: #333;
}

.tt-suggestion {
    font-size: 18px;
    padding: 8px;
    border-bottom: solid 1px #eee;
}

.tt-suggestion.tt-selectable.tt-cursor, .tt-suggestion.tt-selectable:hover {
    background: #99BCD9;
    cursor: pointer;
}