*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
    padding: 20px 20px;
    height: 100vh;
    width: 100%;
    background-color:black;
    color: white;
    position: relative;
    /* overflow-x: hidden; */
}

ul{
    list-style: none;

}
a{
    text-decoration: none;
    color: white;
}
nav ul{
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.header-content{
    margin-top: 20px;
    text-align: center;
}

.header-content h1{
    font-size: 100px;
    margin-bottom: 20px;
    color: white;
    font-weight: lighter;
    
}

.search-input{
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 45px;
    padding-right: 70px;
    border-radius: 25px;
    border-style: solid;
    background-color: rgba(0, 0, 0, 0.76);
    color: white;
}

.input-text{
    position: relative;
    /* border: 2px solid whitesmoke; */
    width: 40%;
    margin: 0 auto;
    /* width: 40%; */

}
.search-icon{
    position: absolute;
    top: 15px;
    left: 1.5em;
}
.voice-icon{
    position: absolute;
    right: 3em;
    top: 15px;
    
}

.camera-icon{
    position: absolute;
    right: 1em;
    top: 15px;
    
}

.search-buttons{
    margin-top: 30px;
}
button{
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: 1px solid white;
    margin-right: 7px;
    margin-bottom: 20px;
}
span{
    color: blue;
}

.display{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    /* border: 1px solid white; */
}

footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    color: white;
    

}
.footer-section h3{
    margin-left: 20px;
    margin-bottom: 10px;
}
.footer-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.left-footer-nav{
    display: flex;
    gap: 20px;
    margin-left: 0px;
}
.right-footer-nav{
   display: flex;
   gap: 20px;
   /* margin-right: 0px; */
    
}
@media screen and (max-width:827px) {
    .footer-nav{
       flex-direction: column;
       gap: 10px;
        
        
    }
}

@media screen and (max-width:422px) {
    .left-footer-nav{
        display: flex;
        gap: 8px;
        margin-left: 0px;
    }
}