
@import url(https://fonts.googleapis.com/css?family=Open+Sans);

body{
    background: #f2f2f2;
    font-family: 'Open Sans', sans-serif;
}


.center {
    text-align: center;
}

.search {
    width: 100%;
    display: flex;
}

.result-list {
    list-style-type: none;
}

.searchTerm {
    width: 40%;
    border: 3px solid #6dbd97;
    padding: 5px;
    height: 20px;
    border-radius: 5px 5px 5px 5px;
    color: #6dbd97;
}

b {
    font-weight: bold;
}

.searchButton {
    border: 3px solid #6dbd97;
    color: #6dbd97;
    border-radius: 5px 5px 5px 5px;

}

.result {
    text-align: left;
    border: 3px solid #6dbd97;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 5px 5px 5px;
}

.wrap{
    width: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.completion {
    list-style: none;
    padding: 0;
}

.completion > li {
    display: inline;
}
