@font-face {
    font-family: "Merriweather";
    src: url(/static/Merriweather_96pt-Regular.ttf
);
}

html, input {
    font-family: "Merriweather", sans;
    text-align: center;
}

h1 {
    font-size: 120px;
}

.mad-lib, button, input[type="text"] {
    font-weight: bold;
    font-size: 60px;
}

input[type="text"] {
    outline: none;
    border: none;
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid #000;
}

.time {
    border-bottom: 2px solid #000;
}

.autocomplete-container {
    position: relative;
    display: inline-block;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background: white;
    border: 2px solid #000;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    text-align: left;
}

.autocomplete-dropdown li {
    padding: 10px 20px;
    cursor: pointer;
}

.autocomplete-dropdown li:hover {
    background: #eee;
}

button {
    width: 1em;
    background-color: white;
    color: black;
    border: 2px solid #000;
    margin: 10px;
}

button:hover {
    background-color: #eee;
    border: 2px solid #000;
}
