*{
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}
body{
    background-color: royalblue;
    color: whitesmoke;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.mainHeader{
    margin-top: 15px;
}
.inputContainer{
    display: block;
    margin: 20px auto;
    width: 90%;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
form{
    width: 80%;
}
input{
    font-size: 15px;
    width: 80%;
    padding: 10px;
    border-radius: 20px;
    outline: none;
    border: 0;
}
button{
    background-color: transparent;
    border: 0;
    height: 30px;
    width: 30px;
    cursor: pointer;
}
.fa-search{
    color: white;
    text-align: center;
    font-size: 1.5em;
}
.header{
    margin-bottom: 20px;
}
.response{
    display: block;
    border-radius: 20px;
    width: 90%;
    /* height: 100px; */
    background-color: white;
    color: black;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.box{
    margin: 10px 0px 10px 0px;
}
.box p{
    font-weight: bold;
}
li:first-child{
    color: #D70F32;
}
li:last-child{
    color:royalblue;
}
ul{
    margin: 5px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
#chart{
    display: none;
    background-color: white;
    margin-top:20px;
    margin-bottom: 20px;
}
.choiceafter{
    background-color: white;
    margin:5px;
    border-radius: 6px;
    font-weight: bold;
    color:grey;
}
.choice{
    display: none;
}
#locErr{
    background-color: rgb(241, 89, 89);
    width: 18%;
    margin: 0 auto;
    height: 30px;
    line-height: 30px;
    block-size: auto 
    
}
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    font-size: 70%;
  }