* {
    box-sizing: border-box;
    margin:0;
    padding: 0;
}

body{
    /* background-color: aliceblue;*/
    font-size: 13px;
    font-family: arial, sans-serif;
}

header{
    width: 100%;
    height: 60px;
}

  
header nav{
    display: flex;
    justify-content: flex-end;
}
.nav-right-section{
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
a{
    text-decoration:none;
    cursor: pointer;
}

.nav-right-section a{
    margin-right: 15px;
    color: rgb(21, 21, 21);
    
}

.nav-right-section img{
    border-radius: 80px;
    width: 33px;
    height: 33px;
    margin-left:20px;
}

.main-input{
    margin:0 auto;
    margin-bottom: 18px;
    justify-content: center;
   
    
}

.main-input input{
    width: 80%;
    display:flex;
    height: 45px;
    border: none;
    outline: none;
 
}

.main-input-container{
    width: 590px;
    display:flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #dfe1e5;
    max-width: 50rem;
    border-radius: 100px;
   
    
    
}





.nav-right-section .menu-icon{
    background-image: url('https://ssl.gstatic.com/gb/images/bar/al-icon.png');
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: none;
    color: #5f6368;
    display:inline-block;
    outline: none;
    cursor:pointer;
    
}

main{
display:flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: center;
}

.main-logo{
    width: 350px;
    margin:2rem auto;
    margin-bottom: 35px;

}

.main-logo img{
    height: 92px;
}

.main-input-container:hover{
    box-shadow: 0 1px 6px 0 #20212447;

}

.main-input .search-icon{
    font-size: 15px; 
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    color: #9aa0a6;

}

.main-input .micro-icon{
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Google_mic.svg/726px-Google_mic.svg.png");
    width: 24px;
    display:flex;
    align-items: center;
    border:0;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor:pointer;
    margin: 10px;
    line-height: 44px;
}

.main-input .cam-icon{
    background-image: url("https://lh3.googleusercontent.com/H65Hxq0ooUCcwhoRGU-fwoXqrGS58mwa2vtr2ZfhGgJzMU0uYybOrZVBs8jydtR22TRC1k9XwDMD2xHB5BBU4IyXW7oH8PyCsq46uX6A42CmXP5GDZ2d");
    height: 20px;
    padding-right: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    line-height: 44px;
}

.main-buttons{
    width: 530px;
    margin: 0 auto;
 
}


.main-buttons div{
    display:inline-block;
}


.main-buttons button{
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 6px;
    color: #3c4043;
    font-family: arial,sans-serif;
    font-size: 14px;
    margin: 11px 4px;
    padding: 0 16px;
    line-height: 27px;
    height: 36px;
    min-width: 54px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}


.main-buttons button:hover{ 
 border: 1px solid #c6c6c6; 
 box-shadow: 0 0.5px 1px 0 #000001;
 cursor: pointer;
 }
 footer{
    width:100%;
    height:50px;
    background-color: #f2f2f2;
    position:absolute;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    font-size: 14px;
    font-family: arial,sans-serif;
    border-top:1px solid #e4e4e4;
   
 }

 footer ul{
    margin:10px;
    list-style:none;
    display:flex;
    padding-left: 0;
    cursor:pointer;
 }
 footer ul li{
    margin-left: 30px;
  
 }

 footer .footer-left{
    margin-left: 3px;
    
 }

 footer .footer-right{
    justify-content: right;
    padding-right: 10px;
    
 }

 footer a{
    color:#202124;
    font-family: arial,sans-serif;
    font-size: 14px;
    
    
}