*{
    margin: 0;
    padding: 0;
    font-family: "General Sans";
}


:root{
    --text-light:#3c4043;
    --text-dark:#202124;
}
body{
   height: 100%;
   width: 100%;
}

nav ul{
    padding: 1rem 2rem;
    display: flex;
    align-items:center;
    justify-content:end;
    gap: 2rem;
    font-size: 17px;
    padding-bottom: 0.2rem;
}

.apps{
    height: 48px;
    width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.apps:hover{
    background-color: #d3d4d7;
}
nav ul li{
    list-style:none;
}
nav ul li a{
   color: var(--text-light);
   text-decoration: none;
}
nav ul li a:hover{
text-decoration: underline;
}
#singn_in{
    display: inline-block;
    padding:12px 35px;
    background-color: rgba(29, 29, 223, 0.75);
    border-radius: 5px;
    color: #f8f3f3;
    font-size: 19px;

    transition: transform 0.5s;
}

#singn_in:hover{
    transform: translateY(-0.5rem);
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin:1rem auto;
    margin-bottom: 2rem;
    margin-top: 0.2rem;
}

#google_icon{
    height: 25%;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    /* display: none; */
   
}

#google_icon img{
    height: 10%;
    width: 100%;
   
}

#google_search{
    width: 45%;
}
.search_box{
    width: 100%;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: white;
    border-radius: 3rem;
    border:2px solid #dfe1e5;

}

.input_text{
    height: 100%;
    width: 100%;
    cursor:context-menu;
    outline: none;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-family: "General Sans Medium";
    cursor: text;
    
}
.cross{
   font-size: 1.6rem; 
   color: var(--text-dark);
   padding: 0 0.5rem;
   cursor: pointer;
   display: none;
}

.mice{
    cursor: pointer;
    height: 100%;
    width: 8%;
    font-size: 20px;
}



.search_icon{
height: 100%;
width: 12%;
font-size: 20px;

}



.camera{
    width: 9%;
    height: 100%;
    margin-right: 1rem;
    cursor: pointer;
}


.input_text,.search_icon,.mice,.camera{
    display: flex;
    align-items: center;
    justify-content: center;
    border:none;
}

#shortcut{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    flex-direction: column;
}

.btn{
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
    background-color: #f8f4f4;
    opacity: .8;
}
.language{
    margin-top: 2rem;
    font-size: 1.1rem;
}
.lang_lang {
    color:blue;
    cursor: pointer;
    word-spacing: 6px;
}



footer{
    width: 100vw;
    height: 2rem;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0rem;
    background-color: #dadada;
}
footer li{
    list-style: none;
}
footer li a{
    text-decoration: none;
    color: var(--text-light);
    font-size: 15px;
}
.gap{
    width: 100%;
    height: 100%;
}

.about{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    height: 100%;
    padding-left: 1rem;
}


.privacy{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;
    height: 100%;
    padding-right: 1rem;
}












.hidden{
visibility: hidden;
}
.visible{
    visibility: visible;
}



 .speak{ 
  height: 100%;
  width: 100%;
  visibility: visible;
  background-color: var(--text-dark);
  position: absolute;
  top:0;
  left:0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content:center;
}

.speak_main{
    width: 60%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speak_text{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.speak_text h2{
    font-size: 3rem;
    letter-spacing: 2px;
}
#speak_now{
    height: 100%;
    width: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.speak_now_imgage{
    height: 200px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #dadada;
    background-color:var(--text-dark);
    animation: box_shadow 1s ease 3s infinite;
}

.speak_now_imgage i{
   font-size: 6vw;
   color:white;

}


#close{
    height: 3rem;
    width: 5rem;
    position: absolute;
    right: 2vw;
    top: 3vw;
    font-size: 2rem;
    background-color: var(--text-dark);
    border:none;
    color: #dadada;
}

.speak{
    /* display: none; */
    visibility: hidden;
}


footer ul li:hover{
text-decoration: underline;
}


@keyframes box_shadow{
    100%{
    box-shadow:0 0 0 5rem var(--text-light);
    }0%{
        box-sizing: 0;
    }
}






