#navbar {
    display: flex;
    column-gap: 1%;
    height: 70px;
    background-color: rgb(14, 50, 214);
    position: sticky;
    top: 0;
    z-index: 5;
}
#firstDiv {
    display: flex;
}
#firstDiv .img1{
    height: 35%;
    margin: auto 10%;
}
#firstDiv .img2 {
    height: 100%;
    margin:auto 20%;
}
#searchbar {
    margin: auto 10%;
    width: 50%;
    height: 40px;
    display: flex;
    justify-content: center;
}
#searchbar .input_box input {
    width: 100%;
    height: 36px;
    background-color: white;
    color: rgb(91,91,91);
    border: 1px solid rgb(67, 67, 67);
    border-right: 0;
    font-size: large;
    padding-left: 10px;

}
#searchbar .input_box{
    width: 100%;
    font-size: 18px;
}
#searchbar .input_box .list{
    width: 114%;
    max-height: 400px;
    background-color: rgb(40, 73, 221);
    overflow-y: auto;
    opacity: 1;
}
#searchbar .input_box .list li{
    list-style: none;
    padding: 8px 12px;
    cursor: default;
    color: white;
}
#searchbar .input_box .list li:hover{
    background-color: #fefefe;
    color: black;
}
#magnifying {
    background-color: white;
    width: 65px;
    height: 38px;
    margin: auto 13px;
    border: 0;
}

i {
    color: rgb(0, 0, 0);
}
a {
    color: white;
    text-decoration: none;
    width: 80px;
    margin: auto;
}
#microphone {
    width: 40px;
    border-radius: 50%;
    border: 0;
    margin-left: 8px;
    background-color: white;
    font-size: large;
}
#lastDiv {
    display: flex;
    margin:auto 0;
}
#lastDiv img {
    height: 25px;
    margin:auto 25px;
    
}
#lastDiv #profile{
    height: 40px;
    margin:auto 25px;
    border-radius: 50%;
}
#apps {
    width: 25px;
    height: 25px;
    margin:auto 25px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 8%;
}
#apps div {
    border: 2px solid white;
    border-radius:1px ;
}

