

.search_form{
    display: flex;
    justify-content: center;
}

.search_label{
    padding: 10px;
}

.search_field{
    display: grid;
    width: 500px;
    position: relative;
}

.search_input_container{
    padding: 10px;
    border-radius: 1em;
    font-size: 1em;
    width: calc(100% - 20px);
    border: 1px solid;
}

.search_input{
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    outline: none;
    width: 100%;
}

.search_results{
    display: none;
    border-radius: 0 0 1em 1em;
    font-size: 1em;
    position: absolute;
    width: 100%;
    top: calc(100% - 5px);
    padding-top: 1px;
    background-color: white;
    border: solid;
    border-width: 0 1px 1px 1px;
}

.search_results a{
    margin-bottom: 10px;
    padding: 10px;
    text-decoration: none;
    color: black;
}

ul{
    list-style-type: none;
}

li{
    padding: 10px;
}

li a{ 
    text-decoration: none;
    color: #ba0c2f;
    font-size: 2em;
    font-weight: bold;
}