* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    
}

ul{
    list-style-type: none;
}

li:hover {
    cursor: pointer;
    text-decoration: underline;
}

a.class1 {
    text-decoration: none;
    color: rgb(112, 117, 122);
}

a.class2 {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

body {
    height: 100vh;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

/* HEADER SECTION */
.header{
    display:flex;
    justify-content: space-between;
    padding-top: 5px;
}

.header ul {
    display: flex;
    align-items:center;
}

.header ul img{
    border-radius: 50%;
}

.header ul li {
    margin: 0 20px;
}

.header .header-left ul{
    display: flex;
    padding: 10px;
    justify-content: left;
}

.header .header-left ul li{
    font-size:15px;
    margin: 0 10px;
    color: rgb(0, 0, 0);
}

.header .header-right ul{
    display: flex;
    padding: 10px;
    justify-content: flex-end;
}

.header .header-right ul li{
    font-size:13px;
    margin: 0 10px;
    color: rgb(0, 0, 0);
    
}

/* MAIN SECTION */
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 65vh;
}

.main .form-container form {
    position:relative;
    padding-top: 20px;
}

.main .form-container form label.query{
    position:absolute;
    left: 22px;
    top: 30px;
}

.main .form-container form label.query i{
    color:rgb(156, 160, 166);
}

.main .form-container form label.microphone{
    position:absolute;
    right: 22px;
    top: 30px;
}

.main .form-container form input{
    padding: 10px;
    width: 300px;
    border: 1px solid rgb(223, 225 , 229);
    outline: none;
    font-size:18px;
    border-radius: 30px;
}

.main .button {
    margin-top: 32px;
}

.main .button button{
    padding: 7px 18px;
    border-radius:5px;
    background-color: rgb(248, 249, 250);
    border: 1px solid rgb(248, 249, 250);
    cursor: pointer;
    margin: 0 5px;
}

.main .button button:hover {
    cursor: pointer;
    border: 1px solid rgb(223, 225 , 229);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.23)
}



/* FOOTER SECTION */
.footer{
    position:absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgb(242, 242, 242);
    padding: 3px;
}
.footer h3{
    font-weight: 400;
    color: rgb(112, 117, 122);
    padding-left: 1.5em;
    font-size: 16px;
    padding-bottom: 10px;
    padding-top: 8px;
}
.footer .link-container{
    display: flex;
    justify-content:space-between;
    border-top: 1px solid rgb(218, 220, 224);  
}

.footer .footer-links-left{
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    justify-content:center;
}

.footer .footer-links-left ul{
    display: flex;
    padding: 10px;
}

.footer .footer-links-left ul li{
    font-size:15px;
    margin: 0 12px;
    color: rgb(112, 117, 122);
}

.footer .footer-links-mid{
    display: flex;
    flex-direction: column;
    justify-content:center;
}

.footer .footer-links-mid ul{
    display: flex;
    padding: 10px;
}

.footer .footer-links-mid ul li{
    font-size:15px;
    margin: 0 3px;
    color: rgb(112, 117, 122);
}

.footer .footer-links-right{
    display: flex;
    flex-direction: column;
    align-items:flex-end;
    justify-content: right;
}

.footer .footer-links-right ul{
    display: flex;
    padding: 10px;
}

.footer .footer-links-right ul li{
    font-size:15px;
    margin: 0 14px;
    color: rgb(112, 117, 122);
}

@media (min-width: 480px) {
    .main .form-container form input {
        width: 470px;
    }
}

@media (min-width: 768px) {
    .main .form-container form input {
        width: 580px;
    }
}
@media (min-width: 1280px) {
    .main .form-container form input {
        width: 580px;
    }
}