*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

header{
    display: flex;
    height: 7vh;
    justify-content: flex-end;
    font-family: arial, sans-serif;
    font-size: 13px;
    color: #222;
}

.header-nav{
    
    display: flex;
    justify-content:center;
    align-items:center;
    gap: 1rem;
    width: 240px;
}

.header-nav-img-app{
    width: 24px;
    height: 24px;
    
}


.header-nav-img{
    width: 32px;
    height: 32px;
}
 
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 83vh;
    gap: 1rem;
    font-family: arial, sans-serif;
}

.main-img{
    width: 272px;
    height: 92px;
}

.form-search{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#search-box-outer {
    display: flex;
    background-color: transparent;
    font: 16px;
    line-height: 34px;
    height: 45px;
    padding: 5px 8px 0 16px;
    margin: 15px;
    width: 560px;
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 3px 8px 1px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.18);
}
  
.search-box-inner {
    border: none;
    background-color: transparent;
    display: flex;
    flex: 100%;
    height: 30px;
    font-size: 18px;
}
  
.mic {
    width: 24px;
    height: 27px;
    background-size: 24px;
    vertical-align: middle;
    padding: 0px 0px 5px 0px;
    cursor: pointer;
}
  
input:focus {
    outline-width: 0;
}
  
.main-buttons-div{
    display: flex;
    height: 6vh;
    gap: 1rem;
    justify-content: space-around;
}

.search-text{
    font-family: arial, sans-serif;
    font-size: 13px;
}

.search-button {
    align-items: flex-start;
    background-color: #f2f2f2;
    color: #757575;
    font-size: 13px;
    font-weight: bold;
    height: 36px;
    margin: 0px 4px;
    padding: 0px 16px;
    display: inline-block;
    border: solid;
    border-radius: 2px;
    border-width: 1px;
    border-color: #f2f2f2;
}



.search-button:hover {
    border-style: solid;
    border-color: rgba(216, 213, 213, 0.87);
    color: rgba(34, 34, 34, 0.589);
    background-color: rgb(248, 248, 248);
    cursor: pointer;
    box-shadow: 0 3px 8px 1px rgba(0,0,0,0.2);
}

.main-buttons-div input{
    height: 5vh;
    padding: 0.5rem;
    border: none;
    background-color: white;
}

.main-buttons-div input:hover{
    border: 0.5px solid rgba(128, 128, 128, 0.568);
    border-radius: 5px;
    border-width: 1px;
    color: rgba(34, 34, 34, 0.884);
}

footer{
    display: flex;
    flex-direction: column;
    height: 10vh;
    color: #5f6368;
    background-color: #f2f2f2;
    font-size: 14px;
    font-family: arial, sans-serif;
}

.footer-div{
    display: flex;
    padding: 1rem;
    height: 5vh;
}

.footer-cima{
    justify-content: flex-start;
    align-items: center;
}

.footer-baixo{
    justify-content: space-between;
    border-top: 1px solid #e4e4e4;
}

.footer-baixo-item{
    display: flex;
    justify-content: space-around;
    gap : 1rem;
    align-items: center;
}

@media (max-width: 700px)
{
    
    main{
        height: 78vh;
    }
    #search-box-outer{
        
        width: 90vw;
    }
    footer{
        height: 15vh;
    }
    .footer-baixo{
        flex-direction: column;
        height: 10vh;
    }
}