/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,300&family=Ubuntu&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

nav{
    padding: 0px 10px;
}

.navigation ul{
    display: flex;
    justify-content: flex-end;
}

.navigation li{
    list-style-type: none;
    padding: 10px 10px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.navigation li a{
    text-decoration: none;
    text-align: center;
    color: #000;
    font-size: 15px;
}

.navigation li a:hover{
    text-decoration: underline;
}

/* li.profileImage{
    width: 55px;
    height: 55px;
} */

li.profileImage img:hover{
    box-shadow: 0px 1px 10px 1px rgb(0 0 0 / 15%);
}

.navigation li a.navIcon{
    border-radius: 50%;
}

.navigation li a.navIcon:hover{
    box-shadow: 1px 0px 10px 7px rgb(0 0 0 / 15%)
    background-color: rgb(0 0 0 / 15%);
}

.navigation a:hover{
    cursor: pointer;
}

.profileImage img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;

}

/* Main START */
.main{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
}

.google{
    font-size: 90px;
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.google .gOne, .google .gTwo{
    color: rgb(11, 161, 211);
}

.google .OTwo{
    color: orange;
}

.google .l{
    color: rgb(13, 162, 13);
}

.google .oOne, .google .e{
    color: rgb(203, 32, 32);
}

.textLine-one{
    display: flex;
    justify-content: center;
}

.textLine-one a{
    text-decoration: none;
    padding: 5px 8px;
    background-color: rgb(247, 245, 245);
    flex-basis: 30%;
    text-align: center;
    margin: 20px 8px;
    color: gray;
}

.textLine-one a:hover{
    outline: 1px solid gray;
    border-radius: 3px;
}

.searchBar{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 15px 0px;
    position: relative;
}

.searchBar .fa-solid.fa-magnifying-glass{
    left: 15px;
    text-align: center;
    position: absolute;
    top: 50%;
    color: gray;
    transform: translateY(-50%);
}

.searchBar .fa-solid.fa-microphone{
    right: 15px;
    text-align: center;
    position: absolute;
    top: 50%;
    color: blue;
    transform: translateY(-50%);
    cursor: pointer;
}

.searchBar input{
    border-radius: 30px;
    border: 1px solid lightgray;
    height: 45px;
    padding: 0px 40px;
    width: 600px;
    outline: none;
}

.searchBar input:hover{
    box-shadow: 0px 1px 10px 1px rgb(0 0 0 / 15%);
}

.textLine-two{
    display: flex;
    justify-content: center;
    margin: 20px 0px;
}

.textLine-two a{
    text-decoration: none;
    color: rgb(24, 24, 194);
}

.textLine-two a, .textLine-two p{
    font-size: 14px;
    margin: 0px 5px;
}

.textLine-two a:hover{
    text-decoration: underline;
}    
/* Main END */

/* Footer START */
footer{
    width: 100%;
    bottom: 0;
    position: absolute;
    background-color: rgb(240, 236, 236);
}

.footerOne{
    display: flex;
}

.footerTwo{
    border-top: 1px solid rgb(212, 210, 210);
    display: flex;
    justify-content: space-between;
}

.footerTwo ul{
    display: flex;
}

.footerTwo ul li, .footerOne p{
    list-style-type: none;
    padding: 20px 20px;
    color: gray;
}

.footerTwo ul li a{
    text-decoration: none;
    color: gray;
    font-size: 14px;
}

.footerTwo ul li a:hover{
    text-decoration: underline;
}
/* Footer END */

/* Responsive START */
@media only screen and (max-width: 950px){
    .navigation li a, .footerTwo ul li a, .footerOne p{
        font-size: 11px;
    }

    .google{
        font-size: 80px;
    }

    .searchBar input{
        width: 500px;
        height: 35px;
    }

    .textLine-one a{
        margin: 15px 8px;
    }

    .textLine-one a{
        color: #000;
        font-size: 11px;
    }

    .textLine-two a, .textLine-two p{
        font-size: 11px;
    }

    .footerTwo ul li{
        padding: 10px;
    }

    .footerOne p{
        padding: 10px 20px;
    }

    .footerTwo{
        justify-content: space-around;
    }

    .textLine-two{
        margin: 10px 0px;
    }
}

@media only screen and (max-width: 450px){
    .searchBar input{
        width: 260px;
        height: 100%;
    }

    .searchBar .fa-solid.fa-magnifying-glass,
    .searchBar .fa-solid.fa-microphone{
        font-size: 8px;
    }

    .google{
        font-size: 35px;
    }

    .textLine-one a{
        flex-basis: 25%;
        font-size: 4px;
    }

    .textLine-one a, .textLine-two p, .textLine-two a,
    .navigation li a, .footerTwo ul li a, .footerOne p{
        font-size: 4px;
    }

    .textLine-one a{
        margin: 5px 5px;
    }

    .searchBar{
        margin: 10px 0px;
    }

    .profileImage img{
        width: 15px;
        height: 15px;
    }

    .navigation li{
        padding: 10px 5px;
    }

    .footerTwo ul li, .footerOne p{
        padding: 0px 3px;
    }

    .footerOne p{
        padding: 5px 3px;
    }
}
/* Responsive END */