* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
}
body {
    min-height: 100vh;
    background-color: #6b0f9c;
    padding: 30px 0;
}
.container {
    width: 35%;
    margin: 0 auto;
}
.search-input {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: 0px 2px 5px 0px #dfdada;
}
.search-input:focus {
    outline: none;
}
.filtered-item {
    max-height: 70vh;
    overflow-y: auto;
    list-style: none;
    background-color: white;
    font-size: 15px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.filtered-item li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}
.mark {
    background-color: yellow;
}
@media (max-width: 700px) {
    .container {
        width: 280px;
    }
}
