.nav{
    
    justify-items: right;
    
    
}

li{
    display: inline;
    

}

a{
    text-decoration: none;
    margin: 1px;
    
}

a:hover{
    color: blue;
    text-decoration: underline;
    transition-duration: .5s;
    background-color: rgb(204, 204, 204);
    /*margin: 3px;
    padding: 6px;*/
    border-radius: 20%;


}

/*google Logo img*/

.google-logo{
    text-align: center;
}

/*Search Bar*/

.search-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    align-content: center;
    
}

.search-box{
    width:400px;
    padding: 10px 15px ; /* height of the box*/
    border: 1px solid #ccc; /*subtle thickness of the border*/
    border-radius: 25px; /*getting the box to have rounded edges*/
    outline: none;
    font-size: 16px;
    transition: box-shadow 0.3 ease;

}

.search-box:focus {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    border-color: #aaa;
}